blob: de1a275e5a72ddf2bdcb195400ff4350f6ae618a [file] [log] [blame]
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include "stdio_impl.h"
#define MAXTRIES 100
char* __randname(char*);
FILE* tmpfile(void) {
char s[] = "/tmp/tmpfile_XXXXXX";
int fd;
FILE* f;
int try
;
for (try = 0; try < MAXTRIES; try ++) {
__randname(s + 13);
fd = open(s, O_RDWR | O_CREAT | O_EXCL, 0600);
if (fd >= 0) {
unlink(s);
f = __fdopen(fd, "w+");
if (!f)
close(fd);
return f;
}
}
return 0;
}