]> 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/common/mpgen.c
lib/common/output.c

index ce9d6ece19274074f28c50520a2251ef18606288..62ccdbb83e70f10f8d1e35275aeb4b4c049d15d7 100644 (file)
@@ -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 [ ");
index b4f076852f4773a6bfa6de9f74aeef8b26ef35da..e6c100494cfb347e5c48e7c8b6e4ea5b91d8ae74 100644 (file)
@@ -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;