diff options
Diffstat (limited to 'Tests/ObjectLibrary/c.c')
-rw-r--r-- | Tests/ObjectLibrary/c.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/Tests/ObjectLibrary/c.c b/Tests/ObjectLibrary/c.c index 968095b..4c37e38 100644 --- a/Tests/ObjectLibrary/c.c +++ b/Tests/ObjectLibrary/c.c @@ -1,7 +1,7 @@ #if defined(_WIN32) && defined(Cshared_EXPORTS) -# define EXPORT_C __declspec(dllexport) +#define EXPORT_C __declspec(dllexport) #else -# define EXPORT_C +#define EXPORT_C #endif extern int a1(void); @@ -10,10 +10,5 @@ extern int b1(void); extern int b2(void); EXPORT_C int c(void) { - return 0 - + a1() - + a2() - + b1() - + b2() - ; + return 0 + a1() + a2() + b1() + b2(); } |