]> git.lizzy.rs Git - rust.git/blob - tests/run-make/raw-dylib-inline-cross-dylib/extern_1.c
Move /src/test to /tests
[rust.git] / tests / run-make / raw-dylib-inline-cross-dylib / extern_1.c
1 #include <stdio.h>
2
3 __declspec(dllexport) void extern_fn_1() {
4     printf("extern_fn_1\n");
5     fflush(stdout);
6 }
7
8 __declspec(dllexport) void extern_fn_2() {
9     printf("extern_fn_2 in extern_1\n");
10     fflush(stdout);
11 }