]> 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/intersect.c

index 2d3441ea5b734bf29c6e553ff3a980922293087c..bef6b78667f56655a6cc68ea56107e48d85494db 100644 (file)
 #include "neato.h"
 #include "simple.h"
 
-
-static void sgnarea(l, m, i)
-struct vertex *l, *m;
-int i[];
-       /* find the sign of the area of each of the triangles
-          formed by adding a vertex of m to l  
-          also find the sign of their product  */
+/* find the sign of the area of each of the triangles
+    formed by adding a vertex of m to l  
+    also find the sign of their product  */
+static void sgnarea(struct vertex *l, struct vertex *m, int i[])
 {
     double a, b, c, d, e, f, g, h, t;
     a = l->pos.x;
@@ -41,17 +38,16 @@ int i[];
     i[2] = i[0] * i[1];
 }
 
-static int between(f, g, h)    /* determine if g lies between f and h      */
-double f, g, h;
+/* determine if g lies between f and h      */
+static int between(double f, double g, double h)
 {
     if ((f == g) || (g == h))
        return (0);
     return ((f < g) ? (g < h ? 1 : -1) : (h < g ? 1 : -1));
 }
 
-static int online(l, m, i)     /* determine if vertex i of line m is on line l     */
-struct vertex *l, *m;
-int i;
+/* determine if vertex i of line m is on line l     */
+static int online(struct vertex *l, struct vertex *m, int i)
 {
     struct position a, b, c;
     a = l->pos;
@@ -64,10 +60,8 @@ int i;
                                                                   b.x));
 }
 
-static int intpoint(l, m, x, y, cond)
-struct vertex *l, *m;
-double *x, *y;
-int cond;                      /* determine point of detected intersections  */
+/* determine point of detected intersections  */
+static int intpoint(struct vertex *l, struct vertex *m, double *x, double *y, int cond)
 {
     struct position ls, le, ms, me, pt1, pt2;
     double m1, m2, c1, c2;
@@ -133,9 +127,8 @@ int cond;                   /* determine point of detected intersections  */
     return (1);
 }
 
-  /*detect whether lines l and m intersect      */
-void
-find_intersection(struct vertex *l,
+/*detect whether lines l and m intersect      */
+void find_intersection(struct vertex *l,
                  struct vertex *m,
                  struct intersection ilist[], struct data *input)
 {