/* Minimal boolean type for C89 compatibility */ #ifndef BOOL_H #define BOOL_H typedef int bool; #define true 1 #define false 0 #endif