]> granicus.if.org Git - graphviz/commitdiff
Re-do some .h files to limit exposure of internal values, .h files,
authorerg <devnull@localhost>
Thu, 7 Dec 2006 22:49:36 +0000 (22:49 +0000)
committererg <devnull@localhost>
Thu, 7 Dec 2006 22:49:36 +0000 (22:49 +0000)
and dependencies on config.h; return to a simple, concrete boolean type

lib/gvc/demand_loading.c
lib/gvc/no_demand_loading.c

index 714d48c90804c6075646f2f5b58d3caa4c4d9f6b..0a54ea3a72d83b929811446275997abb3b8adacb 100644 (file)
 *              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;
index 6b12cd5bf5c70cc718dd87e0a6383b506e268834..7490a02b88a4b6fd937966a3953e337be3244486 100644 (file)
 *              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;