tcc-stupidos/libtcc1/include/stdbool.h
2025-03-01 10:28:53 +01:00

11 lines
186 B
C

#ifndef _STDBOOL_H_
# define _STDBOOL_H_ 1
/* ISOC99 boolean */
# define bool _Bool
# define true 1
# define false 0
# define __bool_true_false_are_defined 1
#endif /* !_STDBOOL_H */