freestnd-c-hdrs-0bsd/stdbool.h

21 lines
362 B
C
Raw Normal View History

2023-04-16 08:24:29 +03:00
#if !defined(__FSTD_HDRS_STDBOOL_H) || defined(__FSTD_HDRS_CXX_WRAP)
#if !defined(__FSTD_HDRS_CXX_WRAP)
#define __FSTD_HDRS_STDBOOL_H 1
2023-03-16 01:08:11 +03:00
#endif
2023-04-16 08:24:29 +03:00
#ifndef __FSTD_HDRS_STDBOOL_H_MACROS
#define __FSTD_HDRS_STDBOOL_H_MACROS 1
2022-02-15 07:46:37 +03:00
2023-03-16 00:50:24 +03:00
#ifndef __cplusplus
# define bool _Bool
2022-02-15 07:46:37 +03:00
2023-03-16 00:50:24 +03:00
# define true 1
# define false 0
#endif
2022-02-15 07:46:37 +03:00
#define __bool_true_false_are_defined 1
#endif
2023-03-16 00:50:24 +03:00
#endif