Browse Source

make tmpfile slightly more efficient (use unlink syscall instead of remove)

rs-1.0
Rich Felker 15 years ago
parent
commit
b172dc8b58
  1. 2
      src/stdio/tmpfile.c

2
src/stdio/tmpfile.c

@ -17,7 +17,7 @@ FILE *tmpfile(void)
fd = syscall(SYS_open, s, O_RDWR|O_CREAT|O_EXCL|O_LARGEFILE, 0600);
if (fd >= 0) {
f = __fdopen(fd, "w+");
remove(s);
syscall(SYS_unlink, s);
return f;
}
}

Loading…
Cancel
Save