Lines Matching defs:overfile
96 static FILE *overfile; /* Overflow file for toomuch() */
169 overfile = NULL;
289 src = overfile != NULL ? overfile : infile;
292 if (src == overfile) {
312 if (overfile != NULL) {
317 if (fflush(overfile) != 0)
319 if (ftruncate(fileno(overfile), truncofs) != 0)
321 if (fclose(overfile) != 0)
323 overfile = NULL;
360 overfile = ofp;
361 truncofs = ftello(overfile);