1 /*
2 **  USEFUL.H -- Some useful stuff.
3 */
4 
5 # define bool	int
6 # define TRUE	1
7 # define FALSE	0
8 
9 # ifndef NULL
10 # define NULL	0
11 # endif NULL
12