summaryrefslogtreecommitdiffstats
path: root/tests/run-make/raw-dylib-stdcall-ordinal/exporter.c
blob: 1fb45bf010ff2f60ab1c20a09c4f8f6afe37b497 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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);
}