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~5775 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6aef918b38e3d3461eaf7b2a49aa11850b0d08b1;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/gvlayout.c b/lib/gvc/gvlayout.c index 0978cabbc..2051baae9 100644 --- a/lib/gvc/gvlayout.c +++ b/lib/gvc/gvlayout.c @@ -25,11 +25,11 @@ #include "const.h" #include "gvplugin_layout.h" -#include "graph.h" #include "gvcint.h" +#include "graph.h" #include "gvcproc.h" -extern void graph_init(graph_t *g, bool use_rankdir); +extern void graph_init(graph_t *g, boolean use_rankdir); extern void graph_cleanup(graph_t *g); int gvlayout_select(GVC_t * gvc, char *layout)