diff options
author | Brad King <brad.king@kitware.com> | 2008-02-03 13:57:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-02-03 13:57:58 (GMT) |
commit | 4d9fa41124f3f33bcea94ef54f1f9e077615498d (patch) | |
tree | 588d6fded9fec06002023d1f7dc351c9a2836f90 /Tests/ExportImport/Export/testLib2.c | |
parent | 62145a5811f0ba8f65dddd16064f6e9d3e736af3 (diff) | |
download | CMake-4d9fa41124f3f33bcea94ef54f1f9e077615498d.zip CMake-4d9fa41124f3f33bcea94ef54f1f9e077615498d.tar.gz CMake-4d9fa41124f3f33bcea94ef54f1f9e077615498d.tar.bz2 |
COMP: Convert C function prototypes to use (void) instead of ().
Diffstat (limited to 'Tests/ExportImport/Export/testLib2.c')
-rw-r--r-- | Tests/ExportImport/Export/testLib2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/ExportImport/Export/testLib2.c b/Tests/ExportImport/Export/testLib2.c index 5feb83d..aabc0d3 100644 --- a/Tests/ExportImport/Export/testLib2.c +++ b/Tests/ExportImport/Export/testLib2.c @@ -1,4 +1,4 @@ -extern int testLib1(); +extern int testLib1(void); -int testLib2() { return testLib1(); } +int testLib2(void) { return testLib1(); } |