blob: 3d8fbf2a04b864629960fe69ad3c8c223b561042 [file] [log] [blame]
#ifndef _STDBOOL_H
#define _STDBOOL_H
#ifndef __cplusplus
#define true 1
#define false 0
typedef _Bool bool;
#endif
#endif