blob: 4466a8c8593562af9c2253826c26d69edc32d984 [file] [log] [blame]
int somedllfunc(void);
int exefunc(void) {
return 42;
}
int main(void) {
return somedllfunc() == exefunc() ? 0 : 1;
}