1 2 3 4 5 6 7 8 9 10 11 12
#include <unistd.h> #include <fcntl.h> #include "syscall.h" int symlink(const char *existing, const char *new) { #ifdef SYS_symlink return syscall(SYS_symlink, existing, new); #else return syscall(SYS_symlinkat, existing, AT_FDCWD, new); #endif }