prog.c 204 B

1234567891011
  1. // No includes here, they need to come from the PCH
  2. void func() {
  3. fprintf(stdout, "This is a function that fails if stdio is not #included.\n");
  4. }
  5. int main(int argc, char **argv) {
  6. return 0;
  7. }