summaryrefslogtreecommitdiff
path: root/Tests/COnly/testCModule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/COnly/testCModule.c')
-rw-r--r--Tests/COnly/testCModule.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/COnly/testCModule.c b/Tests/COnly/testCModule.c
new file mode 100644
index 000000000..1a89292b3
--- /dev/null
+++ b/Tests/COnly/testCModule.c
@@ -0,0 +1,6 @@
+#ifdef _WIN32
+# define TEST_EXPORT __declspec(dllexport)
+#else
+# define TEST_EXPORT
+#endif
+TEST_EXPORT int testCModule(void) { return 0; }