From: ellson Date: Tue, 18 Oct 2005 19:08:17 +0000 (+0000) Subject: typdef bool unless c++ X-Git-Tag: LAST_LIBGRAPH~32^2~7149 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=95636da8c0899705fbef5b034398e83cc286cce8;p=graphviz typdef bool unless c++ --- diff --git a/lib/common/logic.h b/lib/common/logic.h index 715bf638e..8056e9def 100644 --- a/lib/common/logic.h +++ b/lib/common/logic.h @@ -23,7 +23,7 @@ extern "C" { #define NOT(v) (!(v)) -#if ! defined HAVE_BOOL && ! defined __cplusplus +#ifndef __cplusplus typedef unsigned char bool; #define false 0 #define true NOT(false)