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~5780 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5cd31d09d461c443f1a854d6132f2a5ea8c525d5;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/fdpgen/layout.c b/lib/fdpgen/layout.c index 59a604735..332523336 100644 --- a/lib/fdpgen/layout.c +++ b/lib/fdpgen/layout.c @@ -907,9 +907,9 @@ setClustNodes(graph_t* root) * How to combine parts, especially with disparate components? */ if (c_cnt > 1) { - bool *bp; + boolean *bp; if (pinned) { - bp = N_NEW(c_cnt, bool); + bp = N_NEW(c_cnt, boolean); bp[0] = TRUE; } else bp = 0;