blob: 7a9a93c6aaa1b03e74d31044efdd50de349c01e2 [file] [log] [blame]
// No includes here, they need to come from the PCH or explicit inclusion
void func(void) {
fprintf(stdout, "This is a function that fails if stdio is not #included.\n");
setlocale(LC_ALL, ""); /* This will fail if locale.h is not included */
}
int main(void) {
return 0;
}