diff options
Diffstat (limited to 'Tests/Jump/Library')
-rw-r--r-- | Tests/Jump/Library/Shared/jumpShared.cxx | 9 | ||||
-rw-r--r-- | Tests/Jump/Library/Static/jumpStatic.cxx | 5 |
2 files changed, 10 insertions, 4 deletions
diff --git a/Tests/Jump/Library/Shared/jumpShared.cxx b/Tests/Jump/Library/Shared/jumpShared.cxx index f500058..7c4dee9 100644 --- a/Tests/Jump/Library/Shared/jumpShared.cxx +++ b/Tests/Jump/Library/Shared/jumpShared.cxx @@ -1,7 +1,10 @@ #ifdef _WIN32 -# define JUMP_EXPORT __declspec(dllexport) +#define JUMP_EXPORT __declspec(dllexport) #else -# define JUMP_EXPORT +#define JUMP_EXPORT #endif -JUMP_EXPORT int jumpShared() { return 0; } +JUMP_EXPORT int jumpShared() +{ + return 0; +} diff --git a/Tests/Jump/Library/Static/jumpStatic.cxx b/Tests/Jump/Library/Static/jumpStatic.cxx index 1f92eb9..9b169cf 100644 --- a/Tests/Jump/Library/Static/jumpStatic.cxx +++ b/Tests/Jump/Library/Static/jumpStatic.cxx @@ -1 +1,4 @@ -int jumpStatic() { return 0; } +int jumpStatic() +{ + return 0; +} |