From: Erwin Janssen Date: Mon, 6 Feb 2017 17:12:22 +0000 (+0100) Subject: Remove HAVE_STDBOOL_H check from common/logic.h X-Git-Tag: 2.42.0~199^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fe4efe14394f463c0baae1dd02fa515cb6144e0d;p=graphviz Remove HAVE_STDBOOL_H check from common/logic.h This header check was removed earlier, but this one was missed. The C++ check can also be removed, because the stdbool.h header files includes is check by itself. --- diff --git a/lib/common/logic.h b/lib/common/logic.h index ea939986b..693483737 100644 --- a/lib/common/logic.h +++ b/lib/common/logic.h @@ -18,9 +18,7 @@ extern "C" { #endif -#if defined HAVE_STDBOOL_H && ! defined __cplusplus #include -#endif #ifndef NOT #define NOT(v) (!(v))