Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
run-make
/
raw-dylib-stdcall-ordinal
/
exporter.c
blob: 1fb45bf010ff2f60ab1c20a09c4f8f6afe37b497 [
file
] [
log
] [
blame
] [
edit
]
#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
);
}