diff options
Diffstat (limited to 'Tests/ObjectLibrary/main.c')
-rw-r--r-- | Tests/ObjectLibrary/main.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Tests/ObjectLibrary/main.c b/Tests/ObjectLibrary/main.c index 6819f1c..b2f1d44 100644 --- a/Tests/ObjectLibrary/main.c +++ b/Tests/ObjectLibrary/main.c @@ -1,16 +1,12 @@ #if defined(_WIN32) && defined(SHARED_C) -# define IMPORT_C __declspec(dllimport) +#define IMPORT_C __declspec(dllimport) #else -# define IMPORT_C +#define IMPORT_C #endif extern IMPORT_C int b1(void); extern IMPORT_C int b2(void); extern IMPORT_C int c(void); int main(void) { - return 0 - + c() - + b1() - + b2() - ; + return 0 + c() + b1() + b2(); } |