summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/raw-dylib-c/extern_1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-make/raw-dylib-c/extern_1.c')
-rw-r--r--src/test/run-make/raw-dylib-c/extern_1.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/test/run-make/raw-dylib-c/extern_1.c b/src/test/run-make/raw-dylib-c/extern_1.c
deleted file mode 100644
index 5d695547d..000000000
--- a/src/test/run-make/raw-dylib-c/extern_1.c
+++ /dev/null
@@ -1,28 +0,0 @@
-#include <stdio.h>
-
-__declspec(dllexport) int extern_variable = 0;
-
-__declspec(dllexport) void extern_fn_1() {
- printf("extern_fn_1\n");
- fflush(stdout);
-}
-
-__declspec(dllexport) void extern_fn_2() {
- printf("extern_fn_2; didn't get the rename\n");
- fflush(stdout);
-}
-
-__declspec(dllexport) void print_extern_variable() {
- printf("extern_variable value: %d\n", extern_variable);
- fflush(stdout);
-}
-
-__declspec(dllexport) void extern_fn_with_long_name() {
- printf("extern_fn_with_long_name; got the rename\n");
- fflush(stdout);
-}
-
-__declspec(dllexport) void extern_fn_4() {
- printf("extern_fn_4\n");
- fflush(stdout);
-}