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/sfio/sftable.c
lib/vmalloc/vmdebug.c

index bd63c27985493c248043d36b3cab31d33fce68c3..e28d9c098e1985e829198bbe441fcc8ba73debb6 100644 (file)
@@ -408,7 +408,7 @@ int type;
 
 
 /* function to initialize conversion tables */
-static int sfcvinit()
+static int sfcvinit(void)
 {
     reg int d, l;
 
index c681abb54315aa93e21a17f8538449d16002f2f2..7a86c943809d80a428842d67a4dd475325d86168 100644 (file)
@@ -60,7 +60,7 @@ static Void_t *Dbwatch[S_WATCH];
 
 static int Dbinit = 0;
 #define DBINIT()       (Dbinit ? 0 : (dbinit(), Dbinit=1) )
-static void dbinit()
+static void dbinit(void)
 {
     int fd;
     if ((fd = vmtrace(-1)) >= 0)