about summary refs log tree commit diff
path: root/tests/run-make/raw-dylib-c/extern_2.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make/raw-dylib-c/extern_2.c')
-rw-r--r--tests/run-make/raw-dylib-c/extern_2.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/run-make/raw-dylib-c/extern_2.c b/tests/run-make/raw-dylib-c/extern_2.c
new file mode 100644
index 00000000000..ae87fc3f821
--- /dev/null
+++ b/tests/run-make/raw-dylib-c/extern_2.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+__declspec(dllexport) void extern_fn_3() {
+    printf("extern_fn_3\n");
+    fflush(stdout);
+}