diff options
Diffstat (limited to 'Tests/RunCMake/ObjectLibrary/b.c')
-rw-r--r-- | Tests/RunCMake/ObjectLibrary/b.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/RunCMake/ObjectLibrary/b.c b/Tests/RunCMake/ObjectLibrary/b.c index 220ce03..2c65a2b 100644 --- a/Tests/RunCMake/ObjectLibrary/b.c +++ b/Tests/RunCMake/ObjectLibrary/b.c @@ -5,7 +5,7 @@ #endif extern int a(void); -EXPORT int b() +EXPORT int b(void) { return a(); } |