fix bug in dladdr that prevented resolving addresses in the PLT
[oweals/musl.git] / src / stdio / tmpfile.c
index 18c232f7615d5e31463d367df29f01f40590fc93..926d6601d67e067d83bc07149ecd7dd8d4c00939 100644 (file)
@@ -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+");
-                       syscall(SYS_unlink, s);
+                       __syscall(SYS_unlink, s);
                        return f;
                }
        }