#include "asm/unistd_64.h" // for __NR_link #include // for __syscall_2, syscall #include // for link int link(const char *path1, const char *path2) { return syscall(link, path1, path2); }