From 710fdfc1f60369d7cb94255e621c4690641d6276 Mon Sep 17 00:00:00 2001 From: erg Date: Thu, 7 Dec 2006 22:49:36 +0000 Subject: [PATCH] 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 --- lib/common/mpgen.c | 2 +- lib/common/output.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/common/mpgen.c b/lib/common/mpgen.c index ce9d6ece1..62ccdbb83 100644 --- a/lib/common/mpgen.c +++ b/lib/common/mpgen.c @@ -246,7 +246,7 @@ static void mp_polyline(point * A, int n) fprintf(Output_file, " withcolor %s;\n", S[SP].color); } -static void mp_usershape(usershape_t *us, boxf b, point *A, int n, bool filled) +static void mp_usershape(usershape_t *us, boxf b, point *A, int n, boolean filled) { int j; fprintf(Output_file, "%%GV USER SHAPE [ "); diff --git a/lib/common/output.c b/lib/common/output.c index b4f076852..e6c100494 100644 --- a/lib/common/output.c +++ b/lib/common/output.c @@ -61,7 +61,7 @@ static void writenodeandport(FILE * fp, node_t * node, char *port) /* _write_plain: */ -void write_plain(GVJ_t * job, graph_t * g, FILE * f, bool extend) +void write_plain(GVJ_t * job, graph_t * g, FILE * f, boolean extend) { int i, j, splinePoints; char *tport, *hport; -- 2.40.0