From 6b4e4c060ac095a2d2d9889cc239f02ee8d838fb Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Tue, 12 Jan 2016 18:56:26 +0100 Subject: [PATCH] Replace typedef for bool with stdbool.h --- include/common.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/common.h b/include/common.h index 3c4a1cb51..f9ae5e9ea 100644 --- a/include/common.h +++ b/include/common.h @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include @@ -93,8 +94,6 @@ void log_out (FILE *fp, const char *fmt, ...); void log_info (const char *fmt, ...); void log_error (const char *fmt, ...); -typedef int bool; // this is ugly but ADL requires the bool datatype - typedef uint32_t uint; // we should rename to u32, sooner or later, for consistency typedef uint64_t u64;