freestnd-c-hdrs-0bsd/stdbool.h
2022-03-02 18:18:08 +01:00

12 lines
141 B
C

#ifndef _STDBOOL_H
#define _STDBOOL_H 1
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#endif