blob: 3d8fbf2a04b864629960fe69ad3c8c223b561042 [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
8
9typedef _Bool bool;
10
11#endif
12
13#endif