mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
13 lines
267 B
C
13 lines
267 B
C
/**
|
|
* \file bool.h
|
|
*
|
|
* a simple replacement for stdbool.h. simavr and/or simulavr + gdb does not
|
|
* like the data types described in stdbool.h, so we use this instead.
|
|
*/
|
|
#ifndef _bool_h
|
|
#define _bool_h
|
|
|
|
typedef enum bool {false=0, true} bool;
|
|
|
|
#endif // _bool_h
|