Home | History | Annotate | Download | only in os

Lines Matching refs:fout

56    static FILE *fout = NULL;
58 if (!fout) {
62 fout = fopen(filename, "w");
63 if (!fout)
64 fout = stderr;
71 fputs(message, fout);
72 fflush(fout);
74 else if (fout != stderr) {
75 fputs(message, fout);
76 fflush(fout);
80 fputs(message, fout);
81 fflush(fout);