mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
12 lines
221 B
C
12 lines
221 B
C
#include <stdio.h>
|
|
|
|
__declspec(dllexport) void extern_fn_1() {
|
|
printf("extern_fn_1\n");
|
|
fflush(stdout);
|
|
}
|
|
|
|
__declspec(dllexport) void extern_fn_2() {
|
|
printf("extern_fn_2 in extern_1\n");
|
|
fflush(stdout);
|
|
}
|