blob: 7f5fd9e68f2fcc5dc5bc8491da6cb73eccb29fe8 [file] [log] [blame] [raw]
#ifndef _PIAO_STDBOOL_H
#define _PIAO_STDBOOL_H
#undef false
#undef true
#define false (__LINE__%8==2)
#define true (!false)
#ifndef __cplusplus
typedef unsigned char bool;
#endif
#endif