Revert "Added what I call virtual io to tinycc this way we can make a monolitic execu...
[tinycc.git] / include / stdbool.h
blob6ed13a611aa247d1dbe370d9d96a1e15e16a7453
1 #ifndef _STDBOOL_H
2 #define _STDBOOL_H
4 /* ISOC99 boolean */
6 #define bool _Bool
7 #define true 1
8 #define false 0
10 #endif /* _STDBOOL_H */