summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/raw-dylib-inline-cross-dylib/extern_1.c
blob: e5baaf5f04007018b378239b2f96d8678e0efa66 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

__declspec(dllexport) void extern_fn_1() {
    printf("extern_fn_1\n");
    fflush(stdout);
}

__declspec(dllexport) void extern_fn_2() {
    printf("extern_fn_2 in extern_1\n");
    fflush(stdout);
}