ast2firm: Factorise code to convert a value to its storage type.
[cparser] / win32 / stdbool.h
1 /*
2  * ISO C Standard:  7.16  Boolean type and values  <stdbool.h>
3  */
4
5 #ifndef _STDBOOL_H
6 #define _STDBOOL_H
7
8 #ifndef __cplusplus
9
10 #ifdef __INTEL_COMPILER
11 #define bool    _Bool
12 #define true    ((_Bool)1)
13 #define false   ((_Bool)0)
14 #else
15
16 #define bool    unsigned
17 #define true    1
18 #define false   0
19
20 #endif
21 #endif /* __cplusplus */
22
23 #endif