Lines Matching defs:outfile
121 char *outfile, *outpath = 0;
320 outfile = outpath = toutpath;
342 outfile = toutpath;
346 outfile = outpath;
348 if ((outfp = fopen(outfile, "w")) == NULL)
349 err(2, "output file %s", outfile);
357 if (outfile != outpath) {
358 if (access(outfile, F_OK))
359 err(2, "%s", outfile);
366 if (lchmod(outfile, st.st_mode & ALLPERMS) != 0) {
368 outpath, outfile);
372 if (link(outfile, outpath))
374 outpath, outfile);
375 (void)unlink(outfile);