aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/13 pch/c/prog.c
blob: 124bba063ddca683f64b66fbee3e41a5c4c1bd58 (plain)
1
2
3
4
5
6
7
8
9
10
// No includes here, they need to come from the PCH

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

int main(void) {
    return 0;
}