support linux kernel apis (new archs) with old syscalls removed
[musl] / src / stdio / tmpnam.c
index c3f5a2f..449eb9b 100644 (file)
@@ -17,7 +17,12 @@ char *tmpnam(char *buf)
        int r;
        for (try=0; try<MAXTRIES; try++) {
                __randname(s+12);
+#ifdef SYS_lstat
                r = __syscall(SYS_lstat, s, &(struct stat){0});
+#else
+               r = __syscall(SYS_fstatat, AT_FDCWD, s,
+                       &(struct stat){0}, AT_SYMLINK_NOFOLLOW);
+#endif
                if (r == -ENOENT) return strcpy(buf ? buf : internal, s);
        }
        return 0;