gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r9436 - gnunet/src/util


From: gnunet
Subject: [GNUnet-SVN] r9436 - gnunet/src/util
Date: Mon, 9 Nov 2009 14:09:04 -0700

Author: grothoff
Date: 2009-11-09 14:09:04 -0700 (Mon, 09 Nov 2009)
New Revision: 9436

Modified:
   gnunet/src/util/test_bio.c
Log:
no void in definitions

Modified: gnunet/src/util/test_bio.c
===================================================================
--- gnunet/src/util/test_bio.c  2009-11-09 18:45:18 UTC (rev 9435)
+++ gnunet/src/util/test_bio.c  2009-11-09 21:09:04 UTC (rev 9436)
@@ -31,7 +31,7 @@
 #define TESTNUMBER64 100000L
 
 static int
-test_normal_rw (void)
+test_normal_rw ()
 {
   char *msg;
   int64_t testNum;
@@ -101,7 +101,7 @@
 }
 
 static int
-test_emptystring_rw (void)
+test_emptystring_rw ()
 {
   char *msg;
   char *readResultString;
@@ -126,7 +126,7 @@
 }
 
 static int
-test_bigstring_rw (void)
+test_bigstring_rw ()
 {
   char *msg;
   char *readResultString;
@@ -186,7 +186,7 @@
 }
 
 static int
-test_directory_r(void){
+test_directory_r(){
        char *msg;
        char readResult[200];
     const char *fileName = "/dev";
@@ -199,7 +199,7 @@
 }
 
 static int
-test_nullfile_rw (void)
+test_nullfile_rw ()
 {
   char *msg;
   int64_t testNum;
@@ -253,7 +253,7 @@
 }
 
 static int
-test_fakestring_rw (void)
+test_fakestring_rw ()
 {
   char *msg;
   int32_t tmpInt = 2;
@@ -279,7 +279,7 @@
 }
 
 static int
-test_fakemeta_rw (void)
+test_fakemeta_rw ()
 {
   char *msg;
   int32_t tmpInt = 2;
@@ -306,7 +306,7 @@
 }
 
 static int
-test_fakebigmeta_rw (void)
+test_fakebigmeta_rw ()
 {
   char *msg;
   int32_t tmpInt = 1024 * 1024 * 10;
@@ -333,7 +333,7 @@
 }
 
 static int
-check_string_rw (void)
+check_string_rw ()
 {
   GNUNET_assert (0 == test_nullstring_rw ());
   GNUNET_assert (0 == test_emptystring_rw ());
@@ -343,7 +343,7 @@
 }
 
 static int
-check_metadata_rw (void)
+check_metadata_rw ()
 {
   GNUNET_assert (0 == test_fakebigmeta_rw ());
   GNUNET_assert (0 == test_fakemeta_rw ());
@@ -352,7 +352,7 @@
 }
 
 static int
-check_file_rw (void)
+check_file_rw ()
 {
   GNUNET_assert (0 == test_normal_rw ());
   GNUNET_assert (0 == test_nullfile_rw ());





reply via email to

[Prev in Thread] Current Thread [Next in Thread]