mirror of
https://git.musl-libc.org/git/musl
synced 2025-02-22 13:14:39 +03:00
14 lines
128 B
C
14 lines
128 B
C
![]() |
#ifndef _STDBOOL_H
|
||
|
#define _STDBOOL_H
|
||
|
|
||
|
#ifndef __cplusplus
|
||
|
|
||
|
#define true 1
|
||
|
#define false 0
|
||
|
|
||
|
typedef _Bool bool;
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif
|