diff options
Diffstat (limited to 'Tests/LibName')
-rw-r--r-- | Tests/LibName/bar.c | 2 | ||||
-rw-r--r-- | Tests/LibName/foo.c | 2 | ||||
-rw-r--r-- | Tests/LibName/foobar.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Tests/LibName/bar.c b/Tests/LibName/bar.c index f82aa28..c6c1e66 100644 --- a/Tests/LibName/bar.c +++ b/Tests/LibName/bar.c @@ -2,6 +2,6 @@ __declspec(dllexport) #endif -extern void foo() + extern void foo() { } diff --git a/Tests/LibName/foo.c b/Tests/LibName/foo.c index 6d258e0..52e8d89 100644 --- a/Tests/LibName/foo.c +++ b/Tests/LibName/foo.c @@ -1,7 +1,7 @@ #ifdef _WIN32 __declspec(dllimport) #endif -extern void foo(); + extern void foo(); #ifdef _WIN32 __declspec(dllexport) #endif diff --git a/Tests/LibName/foobar.c b/Tests/LibName/foobar.c index 2f8a3ff..2f28d30 100644 --- a/Tests/LibName/foobar.c +++ b/Tests/LibName/foobar.c @@ -1,7 +1,7 @@ #ifdef _WIN32 __declspec(dllimport) #endif -extern void bar(); + extern void bar(); int main() { |