From: Jens Steube Date: Tue, 12 Jan 2016 17:56:26 +0000 (+0100) Subject: Replace typedef for bool with stdbool.h X-Git-Tag: v3.00-beta~522 X-Git-Url: https://www.flypig.org.uk/git/?a=commitdiff_plain;h=6b4e4c060ac095a2d2d9889cc239f02ee8d838fb;p=hashcat.git Replace typedef for bool with stdbool.h --- diff --git a/include/common.h b/include/common.h index 3c4a1cb..f9ae5e9 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;