Lines Matching defs:fname
167 char *fname = NULL;
174 fname = alloca(strlen(output_file) + 5);
175 strcpy(fname, output_file);
176 strcat(fname, ".new");
177 fd = open(fname, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
180 fname, strerror(errno));
199 if (fname && remove(fname))
201 fname, strerror(errno));
210 if (fname && rename(fname, output_file)) {
212 fname, output_file, strerror(errno));