#ifndef CLASSICOS_KLIBC_STDBOOL_H #define CLASSICOS_KLIBC_STDBOOL_H typedef enum { false = 0, true = 1 } bool; #endif // CLASSICOS_KLIBC_STDBOOL_H