#ifndef _BOOL_H #define _BOOL_H typedef char bool; #define TRUE ((bool)1) #define FALSE ((bool)0) #endif /* _BOOL_H */