
#ifndef H_STDBOOL
 #define H_STDBOOL

typedef int bool;
enum { false=0, true=1 };

#endif /* H_STDBOOL */
