diff options
Diffstat (limited to 'system/include/libc/stdbool.h')
-rw-r--r-- | system/include/libc/stdbool.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/system/include/libc/stdbool.h b/system/include/libc/stdbool.h new file mode 100644 index 00000000..a9d7ab78 --- /dev/null +++ b/system/include/libc/stdbool.h @@ -0,0 +1,14 @@ +#ifndef _STDBOOL_H +#define _STDBOOL_H + +#ifndef __cplusplus + +#define true 1 +#define false 0 +#define bool _Bool + +#endif + +#define __bool_true_false_are_defined 1 + +#endif |