From a9c884b560b7278bc1feed4d80f59e92256d3b4c Mon Sep 17 00:00:00 2001 From: erg Date: Thu, 7 Dec 2006 22:49:35 +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/hpglgen.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/common/hpglgen.c b/lib/common/hpglgen.c index 263659242..6794fb34b 100644 --- a/lib/common/hpglgen.c +++ b/lib/common/hpglgen.c @@ -59,7 +59,7 @@ static char *Sep = ";"; static int PageWidth; /* Width of page, in points. */ static char *prefix; /* Machine-dependent prefix and suffix */ static char *suffix; -/* static bool onetime = TRUE; */ +/* static boolean onetime = TRUE; */ #define MAXLINELEN 80 static int bufcnt; /* Number of characters output on current line */ @@ -824,9 +824,9 @@ static void hpgl_polyline(point * A, int n) output(buffer); } -static void hpgl_usershape(usershape_t *us, boxf p, point *A, int n, bool filled) +static void hpgl_usershape(usershape_t *us, boxf p, point *A, int n, boolean filled) { - static bool onetime = TRUE; + static boolean onetime = TRUE; if (onetime) { agerr(AGERR, "custom shapes not available with this driver\n"); onetime = FALSE; -- 2.40.0