summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/symlink.c
blob: 28b1722f304fe08e1b4535a50322e6c1a0e71326 (plain)
1
2
3
4
5
6
7
8
9



#include <syscall.h> // for __syscall_2, syscall

int symlink(const char *path1, const char *path2)
{
	return syscall(symlink, path1, path2);
}