blob: 77fab1a2baf9f61a5c85701d2b42c8b5e596a1fc [file] [log] [blame]
Viet-Trung Luu96b05c12016-01-11 11:26:36 -08001#include <unistd.h>
2#include "syscall.h"
3
George Kulakowski17e3b042016-02-18 15:59:50 -08004int 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 Luu96b05c12016-01-11 11:26:36 -08006}