lang-bootstrap/05/musl-0.6.0/include/stdbool.h

14 lines
128 B
C
Raw Normal View History

2022-02-20 13:18:21 -08:00
#ifndef _STDBOOL_H
#define _STDBOOL_H
#ifndef __cplusplus
#define true 1
#define false 0
typedef _Bool bool;
#endif
#endif