1
0
mirror of https://github.com/fluencelabs/musl synced 2025-06-06 11:31:35 +00:00

14 lines
128 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#ifndef _STDBOOL_H
#define _STDBOOL_H
#ifndef __cplusplus
#define true 1
#define false 0
typedef _Bool bool;
#endif
#endif