summaryrefslogtreecommitdiffstats
path: root/Tests/Dependency/Case5/foo.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Dependency/Case5/foo.c')
-rw-r--r--Tests/Dependency/Case5/foo.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/Dependency/Case5/foo.c b/Tests/Dependency/Case5/foo.c
new file mode 100644
index 0000000..794833d
--- /dev/null
+++ b/Tests/Dependency/Case5/foo.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+#ifdef _WIN32
+__declspec(dllexport)
+#endif
+void foo(void)
+{
+ printf("foo()\n");
+}