summaryrefslogtreecommitdiffstats
path: root/Tests/ExportImport/Export/testLib2.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/ExportImport/Export/testLib2.c')
-rw-r--r--Tests/ExportImport/Export/testLib2.c4
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(); }