blob: 561eed3f2db8824abf698b9d7f3d85f6d4a8092a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef __stdbool_h__
#define __stdbool_h__
#define __bool_true_false_are_defined 1
#ifndef __cplusplus
#define bool _Bool
#define true 1
#define false 0
#endif
#endif
|