about summary refs log tree commit diff
path: root/src/unistd/link.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/link.c')
-rw-r--r--src/unistd/link.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/unistd/link.c b/src/unistd/link.c
index 20193f2a..feec18e5 100644
--- a/src/unistd/link.c
+++ b/src/unistd/link.c
@@ -1,7 +1,12 @@
 #include <unistd.h>
+#include <fcntl.h>
 #include "syscall.h"
 
 int link(const char *existing, const char *new)
 {
+#ifdef SYS_link
 	return syscall(SYS_link, existing, new);
+#else
+	return syscall(SYS_linkat, AT_FDCWD, existing, AT_FDCWD, new, 0);
+#endif
 }