scsh-0.6/c/c-mods.h

11 lines
129 B
C
Raw Normal View History

1999-09-14 08:45:02 -04:00
#ifndef TRUE
1999-09-14 08:45:02 -04:00
#define TRUE (0 == 0)
#endif
#ifndef FALSE
1999-09-14 08:45:02 -04:00
#define FALSE (0 == 1)
#endif
1999-09-14 08:45:02 -04:00
#define bool char /* boolean type */