blob: 9d495f6f14af8ebe5d7a13d7af640b8b5eff336b [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;
}