fixed bug in irgopt -- optimize_cf
[libfirm] / ir / common / bool.h
1 /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
2 ** All rights reserved.
3 **
4 ** Authors: Goetz Lindenmaier.
5 **
6 ** bool.h: Datatype bool.
7 **
8 */
9
10 /* $Id$ */
11
12
13 /*#include "stdbool.h"*/
14
15
16 # ifndef _BOOL_H_
17 # define _BOOL_H_
18
19 # ifndef __cplusplus
20
21 typedef unsigned char bool;
22
23 # endif /* __cplusplus */
24
25 # ifndef TRUE
26 #  define TRUE  1
27 #  define FALSE 0
28 # endif /* ndef TRUE */
29
30 # ifndef true
31 #  define true  1
32 #  define false 0
33 # endif /* ndef TRUE */
34
35 # endif /* _BOOL_H_ */