#ifndef _STDBOOL_H #define _STDBOOL_H /*TODO*/ typedef char bool; enum { false = 0, true = 1 }; #endif