Introduce ElfW macro and ELFW to encapsulate the difference between Elf32_* and Elf64...
[tinycc/kirr.git] / 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 */