tcc-stupidos/libtcc1/include/stdbool.h

12 lines
186 B
C
Raw Normal View History

2025-03-01 09:28:53 +00:00
#ifndef _STDBOOL_H_
# define _STDBOOL_H_ 1
2001-12-17 21:57:01 +00:00
/* ISOC99 boolean */
2025-03-01 09:28:53 +00:00
# define bool _Bool
# define true 1
# define false 0
2001-12-17 21:57:01 +00:00
2025-03-01 09:28:53 +00:00
# define __bool_true_false_are_defined 1
2001-12-17 21:57:01 +00:00
2025-03-01 09:28:53 +00:00
#endif /* !_STDBOOL_H */