opuntiaOS - an operating system targeting x86 and ARMv7
at master 17 lines 298 B view raw
1#ifndef _LIBC_STDBOOL_H 2#define _LIBC_STDBOOL_H 3 4#include <sys/cdefs.h> 5 6__BEGIN_DECLS 7 8#ifndef __bool_true_false_are_defined 9#define bool _Bool 10#define true (1) 11#define false (0) 12#define __bool_true_false_are_defined 1 13#endif // __bool_true_false_are_defined 14 15__END_DECLS 16 17#endif //_LIBC_STDBOOL_H