mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
17 lines
327 B
C
17 lines
327 B
C
|
#ifndef COSMOPOLITAN_LIBC_STDBOOL_H_
|
||
|
#define COSMOPOLITAN_LIBC_STDBOOL_H_
|
||
|
|
||
|
#ifndef __cplusplus
|
||
|
#if __STDC_VERSION__ + 0 >= 201112
|
||
|
#define bool _Bool
|
||
|
#else
|
||
|
#define bool unsigned char
|
||
|
#endif
|
||
|
#define true 1
|
||
|
#define false 0
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
#define __bool_true_false_are_defined
|
||
|
|
||
|
#endif /* COSMOPOLITAN_LIBC_STDBOOL_H_ */
|