scsh-0.6/c/c-mods.h

11 lines
129 B
C

#ifndef TRUE
#define TRUE (0 == 0)
#endif
#ifndef FALSE
#define FALSE (0 == 1)
#endif
#define bool char /* boolean type */