#ifdef STDBOOL_H #define STDBOOL_H typedef int bool; #define true ((int)1) #define false ((int)0) #endif