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

14 lines
128 B
C
Raw Permalink Normal View History

2025-04-05 10:55:40 +01:00
#ifndef _STDBOOL_H
#define _STDBOOL_H
#ifndef __cplusplus
#define true 1
#define false 0
typedef _Bool bool;
#endif
#endif