diff options
Diffstat (limited to 'test cases/common/53 install script/src/foo.c')
-rw-r--r-- | test cases/common/53 install script/src/foo.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test cases/common/53 install script/src/foo.c b/test cases/common/53 install script/src/foo.c new file mode 100644 index 0000000..46cb845 --- /dev/null +++ b/test cases/common/53 install script/src/foo.c @@ -0,0 +1,10 @@ +#ifdef _WIN32 + #define DO_EXPORT __declspec(dllexport) +#else + #define DO_EXPORT +#endif + +DO_EXPORT int foo(void) +{ + return 0; +} |