zig/lib/libc/musl/src/stdio/tmpnam.c
2023-06-20 12:55:38 -04:00

28 lines
553 B
C
Vendored

#include <stdio.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/stat.h>
#include <string.h>
#include <stdlib.h>
#include "syscall.h"
#define MAXTRIES 100
char *tmpnam(char *buf)
{
static char internal[L_tmpnam];
char s[] = "/tmp/tmpnam_XXXXXX";
int try;
int r;
for (try=0; try<MAXTRIES; try++) {
__randname(s+12);
#ifdef SYS_readlink
r = __syscall(SYS_readlink, s, (char[1]){0}, 1);
#else
r = __syscall(SYS_readlinkat, AT_FDCWD, s, (char[1]){0}, 1);
#endif
if (r == -ENOENT) return strcpy(buf ? buf : internal, s);
}
return 0;
}