From ad307c3d64399f9e3723494b29856308a5f10de7 Mon Sep 17 00:00:00 2001 From: ellson Date: Thu, 24 Feb 2005 00:57:33 +0000 Subject: [PATCH] fix "function declaration isn't a prototype" warnings from -Wstrict-prototypes mostly by using (void) instead of () for functions with empty parameter lists. --- lib/neatogen/poly.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/neatogen/poly.h b/lib/neatogen/poly.h index 92015796b..439d1d074 100644 --- a/lib/neatogen/poly.h +++ b/lib/neatogen/poly.h @@ -33,7 +33,7 @@ extern "C" { int kind; } Poly; - extern void polyFree(); + extern void polyFree(void); extern int polyOverlap(Point, Poly *, Point, Poly *); extern void makePoly(Poly *, Agnode_t *, double); extern void breakPoly(Poly *); -- 2.40.0