diff options
Diffstat (limited to 'src/include/stdbool.h')
| -rw-r--r-- | src/include/stdbool.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/stdbool.h b/src/include/stdbool.h new file mode 100644 index 000000000..c49a7f192 --- /dev/null +++ b/src/include/stdbool.h @@ -0,0 +1,10 @@ +#ifndef _STDBOOL_H +#define _STDBOOL_H + +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); + +#define bool _Bool +#define true 1 +#define false 0 + +#endif /* _STDBOOL_H */ |
