bl_mcu_sdk/common/libc/inc/stdbool.h
2021-06-20 12:25:46 +08:00

14 lines
162 B
C

/*
* stdbool.h
*/
#ifndef _STDBOOL_H
#define _STDBOOL_H
#ifndef __cplusplus
#define bool _Bool
#define true 1
#define false 0
#endif
#endif /* _STDBOOL_H */