]> git.lizzy.rs Git - rust.git/blob - tests/run-make/raw-dylib-stdcall-ordinal/exporter.c
Merge commit '1d8491b120223272b13451fc81265aa64f7f4d5b' into sync-from-rustfmt
[rust.git] / tests / run-make / raw-dylib-stdcall-ordinal / exporter.c
1 #include <stdio.h>
2
3 void __stdcall exported_function_stdcall(int i) {
4     printf("exported_function_stdcall(%d)\n", i);
5     fflush(stdout);
6 }
7
8 void __fastcall exported_function_fastcall(int i) {
9     printf("exported_function_fastcall(%d)\n", i);
10     fflush(stdout);
11 }