]> 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:34 +0000 (00:57 +0000)
committerellson <devnull@localhost>
Thu, 24 Feb 2005 00:57:34 +0000 (00:57 +0000)
    mostly by using (void) instead of () for functions with empty parameter lists.

lib/vmalloc/vmhdr.h
tclpkg/tcldot/tkgen.c

index dbc58b0ba6186a09c673f18f8078b1812d6da7ed..ca36da0fcb8ae7c402225aa720e5cd40fd216806 100644 (file)
@@ -158,7 +158,7 @@ extern "C" {
        long l, *lp;
        double d, *dp, ***dppp[8];
        size_t s, *sp;
-       void (*fn) ();
+       void (*fn) (void);
        union _align_u *align;
        Head_t *head;
        Body_t *body;
index 7502bb86b33c40d394f48d6ad0e0f246f84b5406..66315fb8e5c9bdc9567b3528b0e1422216f2e551 100644 (file)
@@ -94,7 +94,7 @@ static void tkgen_start_item(char *item)
     tkgen_append_string(item);
 }
 
-static void tkgen_end_item()
+static void tkgen_end_item(void)
 {
     tkgen_append_string("\n");
 }