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