diff options
Diffstat (limited to 'Tests/ExportImport/Export/testLib2.c')
-rw-r--r-- | Tests/ExportImport/Export/testLib2.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tests/ExportImport/Export/testLib2.c b/Tests/ExportImport/Export/testLib2.c index aabc0d3..7a5206f 100644 --- a/Tests/ExportImport/Export/testLib2.c +++ b/Tests/ExportImport/Export/testLib2.c @@ -1,4 +1,7 @@ extern int testLib1(void); -int testLib2(void) { return testLib1(); } +int testLib2(void) +{ + return testLib1(); +} |