Lines Matching defs:out
65 lpd 2000-04-12 backs out Eggert's changes because of bugs:
234 FILE *out = stdout;
280 out = fopen(output_name, "w");
281 if ( out == NULL ) {
301 fprintf(out, "#line 1 \"%s\"\n", filename);
315 convert1(buf, out, 1, convert_varargs);
328 convert1(buf, out, 0, convert_varargs);
329 fputs(more, out);
339 fputs(buf, out);
350 wl: fputs(buf, out);
356 fputs(buf, out);
359 output_error = ferror(out);
360 output_error |= fclose(out);
361 } else { /* out == stdout */
362 fflush(out);
363 output_error = ferror(out);
556 convert1(buf, out, header, convert_varargs)
558 FILE *out;
583 fputs(buf, out);
706 /* Put out the function name and left parenthesis. */
708 while ( p != endfn ) putc(*p, out), p++;
709 /* Put out the declaration. */
711 { fputs(");", out);
714 putc(*p, out);
720 putc(*p, out), p++;
722 fputs(", ", out);
724 fputs(") ", out);
725 /* Put out the argument declarations */
730 fputs(breaks[0], out); /* any prior args */
731 fputs("va_dcl", out); /* the final arg */
732 fputs(bp[0], out);
735 fputs(breaks[0], out);