]> granicus.if.org Git - graphviz/commitdiff
fix "function declaration isn't a prototype" warnings from -Wstrict-prototypes
authorellson <devnull@localhost>
Thu, 24 Feb 2005 00:57:33 +0000 (00:57 +0000)
committerellson <devnull@localhost>
Thu, 24 Feb 2005 00:57:33 +0000 (00:57 +0000)
    mostly by using (void) instead of () for functions with empty parameter lists.

lib/neatogen/poly.h

index 92015796bac6887b4a1735d692397957f12b60b4..439d1d07493c378ef32a6cf142d7a5105218d614 100644 (file)
@@ -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 *);