mirror of
https://github.com/ziglang/zig.git
synced 2026-01-16 20:35:17 +00:00
28 lines
553 B
C
Vendored
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;
|
|
}
|