diff options
Diffstat (limited to 'bool.h')
-rw-r--r-- | bool.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +#ifndef BOOL_H +#define BOOL_H + + #include <stdbool.h> + + #ifndef TRUE + #define TRUE true + #endif + + #ifndef FALSE + #define FALSE false + #endif + +#endif |