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