metal-cos/include/stdbool.h

11 lines
119 B
C
Raw Permalink Normal View History

#ifndef _STDBOOL_H_
#define _STDBOOL_H_
#define false 0
#define true 1
#define bool _Bool
#endif /* _STDBOOL_H_ */