Lines Matching refs:f1
44 xcp(f1, f2) in xcp() argument
45 char *f1, *f2; in xcp()
52 if ((fd1 = open(f1, O_RDONLY)) == -1)
57 (void) strcat(f2, BASENAME(f1, '/'));
115 xmv(f1, f2) in xmv() argument
116 register char *f1, *f2; in xmv()
129 if ((ret = link(f1, f2)) < 0) {
131 ret = xcp(f1, f2);
135 (void) unlink(f1);
197 uidxcp(f1, f2) in uidxcp() argument
198 char *f1, *f2; in uidxcp()
206 (void) strcat(full, BASENAME(f1, '/'));
216 status = xcp(f1, full);
224 _exit(xcp(f1, full));