diff options
Diffstat (limited to 'tests/run-make/raw-dylib-inline-cross-dylib/extern_2.c')
-rw-r--r-- | tests/run-make/raw-dylib-inline-cross-dylib/extern_2.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/run-make/raw-dylib-inline-cross-dylib/extern_2.c b/tests/run-make/raw-dylib-inline-cross-dylib/extern_2.c new file mode 100644 index 000000000..30aa46922 --- /dev/null +++ b/tests/run-make/raw-dylib-inline-cross-dylib/extern_2.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +__declspec(dllexport) void extern_fn_2() { + printf("extern_fn_2 in extern_2\n"); + fflush(stdout); +} |