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


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

int symlinkat(const char *path1, int fd, const char *path2)

{
	return syscall(symlinkat, path1, fd, path2);
}