00001 #ifndef _STDBOOL_H 00002 #define _STDBOOL_H 00003 00004 #ifndef __cplusplus 00005 typedef int bool; 00006 #define false 0 00007 #define true 1 00008 #endif 00009 00010 #endif