mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2026-01-15 10:35:20 -08:00
13 lines
225 B
C
13 lines
225 B
C
#ifndef CLASSICOS_KLIBC_STDBOOL_H
|
|
#define CLASSICOS_KLIBC_STDBOOL_H
|
|
|
|
#ifndef __cplusplus
|
|
#define bool _Bool
|
|
#define true 1
|
|
#define false 0
|
|
#endif
|
|
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
#endif // CLASSICOS_KLIBC_STDBOOL_H
|