summaryrefslogtreecommitdiff
path: root/Tests/ExportImport/Export/testLib5.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/ExportImport/Export/testLib5.c')
-rw-r--r--Tests/ExportImport/Export/testLib5.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/ExportImport/Export/testLib5.c b/Tests/ExportImport/Export/testLib5.c
new file mode 100644
index 000000000..20a821513
--- /dev/null
+++ b/Tests/ExportImport/Export/testLib5.c
@@ -0,0 +1,7 @@
+#if defined(_WIN32) || defined(__CYGWIN__)
+# define testLib5_EXPORT __declspec(dllexport)
+#else
+# define testLib5_EXPORT
+#endif
+
+testLib5_EXPORT int testLib5(void) { return 0; }