summaryrefslogtreecommitdiff
path: root/test cases/failing build/3 pch disabled/c/prog.c
blob: 0ce3d0a2451057b8ca2f3f9a948eb0b87dab405c (plain)
1
2
3
4
5
6
7
8
9
10
// No includes here, they need to come from the PCH

void func() {
    fprintf(stdout, "This is a function that fails if stdio is not #included.\n");
}

int main(int argc, char **argv) {
    return 0;
}