Files
third_party_musl2/include/stdbool.h
T
Caoruihong a7a91cd947 chore: isolate modifications into the porting folder
isolate changes, keep orignal musl sources clean.

Signed-off-by: Caoruihong <crh.cao@huawei.com>
Change-Id: Id7f3a5109771f93d397e30febba36e09ddaf4f36
2021-06-11 11:51:50 +08:00

15 lines
167 B
C

#ifndef _STDBOOL_H
#define _STDBOOL_H
#ifndef __cplusplus
#define true 1
#define false 0
#define bool _Bool
#endif
#define __bool_true_false_are_defined 1
#endif