summaryrefslogtreecommitdiff
path: root/test cases/windows/9 vs module defs generated/prog.c
blob: 4466a8c8593562af9c2253826c26d69edc32d984 (plain)
1
2
3
4
5
6
7
8
9
int somedllfunc(void);

int exefunc(void) {
    return 42;
}

int main(void) {
    return somedllfunc() == exefunc() ? 0 : 1;
}