21 lines
328 B
C
Raw Normal View History

2023-03-15 22:50:24 +01:00
#if !defined(_STDBOOL_H) || defined(__LIBC_GUARDLESS_INCLUDE)
2023-03-15 23:08:11 +01:00
#if !defined(__LIBC_GUARDLESS_INCLUDE)
#define _STDBOOL_H 1
#endif
#ifndef __STDBOOL_H_MACROS
#define __STDBOOL_H_MACROS 1
2022-02-15 05:46:37 +01:00
2023-03-15 22:50:24 +01:00
#ifndef __cplusplus
# define bool _Bool
2022-02-15 05:46:37 +01:00
2023-03-15 22:50:24 +01:00
# define true 1
# define false 0
#endif
2022-02-15 05:46:37 +01:00
#define __bool_true_false_are_defined 1
#endif
2023-03-15 22:50:24 +01:00
#endif