Files
RedBear-OS/include/stdbool.h
T
2018-03-03 13:05:43 -07:00

10 lines
155 B
C

#ifndef _STDBOOL_H
#define _STDBOOL_H
typedef _Bool bool;
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#endif /* _STDBOOL_H */