slcc/fakelibc/stdbool.h

11 lines
149 B
C
Raw Normal View History

#ifndef _FAKELIBC_STDBOOL_H
#define _FAKELIBC_STDBOOL_H
typedef int bool;
#define true 1
#define false 0
/* From ifndef at top of file: */
#endif