aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bool.h
blob: 7525d6cfd5225382e7172d4f599d25a67317c730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _bool_h_
#define _bool_h_

#ifndef __GNUC__

#ifndef bool
#define bool int
#endif

#ifndef true
#define true 1
#endif

#ifndef false
#define false 0
#endif

#endif

#endif