Files
phs_v1.0.1.0/third_party/musl/ndk_musl_include/stdbool.h

15 lines
167 B
C
Raw Normal View History

2024-09-27 19:21:56 +08:00
#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