summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/link.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/link.c')
-rw-r--r--libc/sysdeps/linux/common/link.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/link.c b/libc/sysdeps/linux/common/link.c
index b5e5536d5..86d4cfabc 100644
--- a/libc/sysdeps/linux/common/link.c
+++ b/libc/sysdeps/linux/common/link.c
@@ -9,4 +9,13 @@
#include <sys/syscall.h>
#include <unistd.h>
+
+#if defined __NR_linkat && !defined __NR_link
+# include <fcntl.h>
+int link(const char *oldpath, const char *newpath)
+{
+ return linkat(AT_FDCWD, oldpath, AT_FDCWD, newpath, 0);
+}
+#else
_syscall2(int, link, const char *, oldpath, const char *, newpath)
+#endif