blob: d0806ff65de9acc6dcd747b9dbffb39193c8d841 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __STDBOOL_H__
#define __STDBOOL_H__
/* Strictly speaking, this should be a built-in type. */
typedef char _Bool;
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#endif
|