amd64: Spell amd64 as AMD64 in macro names.
[libfirm] / 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 #define bool    int
11 #define true    1
12 #define false   0
13
14 #endif /* __cplusplus */
15
16 #endif /* stdbool.h */