make linking of thread-start with explicit scheduling conditional
[musl] / src / unistd / link.c
index f121bb9..feec18e 100644 (file)
@@ -1,7 +1,12 @@
 #include <unistd.h>
+#include <fcntl.h>
 #include "syscall.h"
 
 int link(const char *existing, const char *new)
 {
-       return syscall2(__NR_link, (long)existing, (long)new);
+#ifdef SYS_link
+       return syscall(SYS_link, existing, new);
+#else
+       return syscall(SYS_linkat, AT_FDCWD, existing, AT_FDCWD, new, 0);
+#endif
 }