foboot/include/stdbool.h

9 lines
117 B
C
Raw Normal View History

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