freestanding-headers/stdbool.h

12 lines
141 B
C
Raw Normal View History

2022-03-02 20:18:08 +03:00
#ifndef _STDBOOL_H
#define _STDBOOL_H 1
2022-02-15 07:46:37 +03:00
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#endif