16 lines
230 B
C
Raw Permalink Normal View History

2014-01-17 22:00:39 +01:00
#ifndef FATAL_H_
#define FATAL_H_
#include <stdint.h>
const uint8_t FATAL_UNKNOWN = 1;
const uint8_t FATAL_NOT_ENOUGH_CMD_SLOTS = 2;
const uint8_t FATAL_BUFFER_OVERFLOW = 10;
void fatal(uint8_t code);
#endif /* FATAL_H_ */