// ============================================================ // // ln3bool.h // // Copyright 2002, Dennis Meilicke and Rene Peralta // // ============================================================ // // Description: // // OK. Believe it or not, some compilers haven't implemented // the 'bool' data type, yet. Most notorious is the standard // compilers under AIX... // // This header implements just enough bool... // // ============================================================ // // Eventually, this will be a configuration option for this. // // For now, you have to include it when you port. // // ============================================================ #ifndef __ln3_ln3bool__ #define __ln3_ln3bool__ typedef short bool; #define true 1 #define false 0 #endif // __ln3_ln3bool__