util.c | 60 int fromfd; local in function:move_file 70 fromfd = open(from, O_RDONLY); 71 if (fromfd < 0) 73 while ((i = read(fromfd, buf, bufsz)) > 0) 76 close(fromfd); 172 int tofd, fromfd; local in function:copy_file 178 fromfd = open(from, O_RDONLY, 0); 179 if (fromfd < 0) 181 while ((i = read(fromfd, buf, bufsz)) > 0) 184 close(fromfd); [all...] |