mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 03:32:21 +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);
|
|
}
|