blob: 29f10c07bdfffaed940fc0230392cb237e338be5 (
plain)
1
2
3
4
5
6
7
8
|
#include "asm/unistd_64.h" // for __NR_symlink
#include <syscall.h> // for __syscall_2, syscall
int symlink(const char *path1, const char *path2)
{
return syscall(symlink, path1, path2);
}
|