mirror of
https://github.com/Fishwaldo/bl_mcu_sdk.git
synced 2025-07-12 15:58:38 +00:00
14 lines
162 B
C
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 */
|