Home | History | Annotate | Download | only in Programs

Lines Matching refs:outfile

36     FILE *infile = NULL, *outfile = NULL;
110 outfile = fopen(outpath, "w");
111 if (outfile == NULL) {
115 fprintf(outfile, "%s\n", header);
117 fprintf(outfile, "const unsigned char _Py_M__importlib[] = {\n");
119 fprintf(outfile,
123 fprintf(outfile, " ");
125 fprintf(outfile, "%d,", (unsigned int) data[i]);
127 fprintf(outfile, "\n");
129 fprintf(outfile, "};\n");
134 if (outfile) {
135 if (ferror(outfile)) {
139 fclose(outfile);
148 if (outfile)
149 fclose(outfile);