mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
12 lines
268 B
C
12 lines
268 B
C
#include <stdio.h>
|
|
|
|
void __stdcall exported_function_stdcall(int i) {
|
|
printf("exported_function_stdcall(%d)\n", i);
|
|
fflush(stdout);
|
|
}
|
|
|
|
void __fastcall exported_function_fastcall(int i) {
|
|
printf("exported_function_fastcall(%d)\n", i);
|
|
fflush(stdout);
|
|
}
|