]> git.lizzy.rs Git - rust.git/blob - tests/run-make/raw-dylib-stdcall-ordinal/exporter.c
Rollup merge of #107412 - tshepang:needless-check, r=wesleywiser
[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 }