#ifndef WH_STDBOOL_H_e9e88b96_ #define WH_STDBOOL_H_e9e88b96_ /* * Some platforms don't have . Make up for that. */ #include #if __NetBSD_Version__ == 104200000 // 1.4T #define bool __typeof__(unsigned char) #define false 0 #define true 1 #elif __NetBSD_Version__ == 400000003 // 4.0.1 #include #elif __NetBSD_Version__ == 502000000 // 5.2 #include #else #error "Don't know how to handle on this version." #endif #endif