1 2 3 4 5 6 7
#include <syscall.h> int symlinkat(const char *path1, int fd, const char *path2) { return syscall(symlinkat, path1, fd, path2); }