COMP: Convert C function prototypes to use (void) instead of ().

This commit is contained in:
Brad King
2008-02-03 08:57:58 -05:00
parent 62145a5811
commit 4d9fa41124
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
#include <stdio.h>
extern int testExe1lib();
extern int testExe1lib(void);
int main(int argc, const char* argv[])
{
+1 -1
View File
@@ -1 +1 @@
int testExe1lib() { return 0; }
int testExe1lib(void) { return 0; }
+1 -1
View File
@@ -1 +1 @@
int testLib1() { return 0; }
int testLib1(void) { return 0; }
+2 -2
View File
@@ -1,4 +1,4 @@
extern int testLib1();
extern int testLib1(void);
int testLib2() { return testLib1(); }
int testLib2(void) { return testLib1(); }