From e810072d71355ef68315f1c087168f290585c716 Mon Sep 17 00:00:00 2001 From: Bert Münnich Date: Fri, 8 Feb 2013 23:20:11 +0100 Subject: Use bool from stdbool.h after switching to C99 --- types.h | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/types.h b/types.h index ee871ef..1b15c73 100644 --- a/types.h +++ b/types.h @@ -19,14 +19,7 @@ #ifndef TYPES_H #define TYPES_H -#undef bool -#undef false -#undef true - -typedef enum { - false, - true -} bool; +#include typedef enum { BO_BIG_ENDIAN, -- cgit v1.2.3-54-g00ecf