diff options
| author | grischka <grischka> | 2009-04-18 14:28:45 +0200 |
|---|---|---|
| committer | grischka <grischka> | 2009-04-18 15:08:03 +0200 |
| commit | ea5e81bd6a3376232bf4747b2fa2e0a91c19b337 (patch) | |
| tree | f88b43a25996cd7f4b9c32aac70fdd33e3f4dc2c /include/stdbool.h | |
| parent | e8a52a824957808410a8eb13d4b5e2f3e1776553 (diff) | |
| download | tinycc-ea5e81bd6a3376232bf4747b2fa2e0a91c19b337.tar.gz tinycc-ea5e81bd6a3376232bf4747b2fa2e0a91c19b337.tar.bz2 | |
new subdirs: include, lib, tests
Diffstat (limited to 'include/stdbool.h')
| -rw-r--r-- | include/stdbool.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/stdbool.h b/include/stdbool.h new file mode 100644 index 0000000..6ed13a6 --- /dev/null +++ b/include/stdbool.h @@ -0,0 +1,10 @@ +#ifndef _STDBOOL_H +#define _STDBOOL_H + +/* ISOC99 boolean */ + +#define bool _Bool +#define true 1 +#define false 0 + +#endif /* _STDBOOL_H */ |
