mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2026-01-02 05:25:19 -08:00
7 lines
150 B
C
7 lines
150 B
C
#ifndef CLASSICOS_KLIBC_STDBOOL_H
|
|
#define CLASSICOS_KLIBC_STDBOOL_H
|
|
|
|
typedef enum { false = 0, true = 1 } bool;
|
|
|
|
#endif // CLASSICOS_KLIBC_STDBOOL_H
|