#ifndef __STDBOOL_H__ #define __STDBOOL_H__ typedef int bool; #define false 0 #define true 1 #endif