blob: a9d7ab787839727b5fada461710a265afd1dff27 [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#ifndef _STDBOOL_H
2#define _STDBOOL_H
3
4#ifndef __cplusplus
5
6#define true 1
7#define false 0
Rich Felkerd23a5432011-09-20 14:51:56 -04008#define bool _Bool
Rich Felker0b44a032011-02-12 00:22:29 -05009
Rich Felker0b44a032011-02-12 00:22:29 -050010#endif
11
Rich Felker38e6acb2013-08-28 00:41:00 -040012#define __bool_true_false_are_defined 1
13
Rich Felker0b44a032011-02-12 00:22:29 -050014#endif