diff options
| author | Uneven Prankster <unevenprankster@protonmail.com> | 2023-07-12 13:22:29 -0300 |
|---|---|---|
| committer | Uneven Prankster <unevenprankster@protonmail.com> | 2023-07-12 13:22:29 -0300 |
| commit | fa2bdd711212ba6b7a94a20971e8bfa281e73296 (patch) | |
| tree | 6713b3c0379507d49558287b71dd360ce188a2f0 /tinycc/include/stdbool.h | |
lol
Diffstat (limited to 'tinycc/include/stdbool.h')
| -rw-r--r-- | tinycc/include/stdbool.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tinycc/include/stdbool.h b/tinycc/include/stdbool.h new file mode 100644 index 0000000..d2ee446 --- /dev/null +++ b/tinycc/include/stdbool.h @@ -0,0 +1,11 @@ +#ifndef _STDBOOL_H +#define _STDBOOL_H + +/* ISOC99 boolean */ + +#define bool _Bool +#define true 1 +#define false 0 +#define __bool_true_false_are_defined 1 + +#endif /* _STDBOOL_H */ |
