Viet-Trung Luu | 96b05c1 | 2016-01-11 11:26:36 -0800 | [diff] [blame] | 1 | #include <unistd.h> |
2 | #include "syscall.h" | ||||
3 | |||||
George Kulakowski | 17e3b04 | 2016-02-18 15:59:50 -0800 | [diff] [blame] | 4 | int linkat(int fd1, const char* existing, int fd2, const char* new, int flag) { |
5 | return syscall(SYS_linkat, fd1, existing, fd2, new, flag); | ||||
Viet-Trung Luu | 96b05c1 | 2016-01-11 11:26:36 -0800 | [diff] [blame] | 6 | } |