mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
13 lines
128 B
C
13 lines
128 B
C
#ifndef _STDBOOL_H
|
|
#define _STDBOOL_H
|
|
|
|
#ifndef __cplusplus
|
|
|
|
#define true 1
|
|
#define false 0
|
|
|
|
typedef _Bool bool;
|
|
|
|
#endif
|
|
|
|
#endif
|