tac0S
Template Affectional Command Operating System
bool.h
1 
8 #ifndef _bool_h
9 #define _bool_h 1
10 
11 // 'true' and 'false' are c++ keywords.
12 #undef TRUE
13 #undef FALSE
14 #define TRUE true
15 #define FALSE false
16 
17 #endif