From: erg Date: Thu, 7 Dec 2006 22:49:36 +0000 (+0000) Subject: Re-do some .h files to limit exposure of internal values, .h files, X-Git-Tag: LAST_LIBGRAPH~32^2~5779 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e570fe31b6d8c3635cb1d93ab39758d5ee03e700;p=graphviz Re-do some .h files to limit exposure of internal values, .h files, and dependencies on config.h; return to a simple, concrete boolean type --- diff --git a/lib/gvc/demand_loading.c b/lib/gvc/demand_loading.c index 714d48c90..0a54ea3a7 100644 --- a/lib/gvc/demand_loading.c +++ b/lib/gvc/demand_loading.c @@ -14,10 +14,4 @@ * AT&T Research, Florham Park NJ * **********************************************************/ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include "arith.h" - -const bool Demand_Loading = true; +const int Demand_Loading = 1; diff --git a/lib/gvc/no_demand_loading.c b/lib/gvc/no_demand_loading.c index 6b12cd5bf..7490a02b8 100644 --- a/lib/gvc/no_demand_loading.c +++ b/lib/gvc/no_demand_loading.c @@ -14,10 +14,4 @@ * AT&T Research, Florham Park NJ * **********************************************************/ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include "arith.h" - -const bool Demand_Loading = false; +const int Demand_Loading = 0;