summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/symlinkat.c
blob: e5d8135e85ec14779763f6551891df87c703c086 (plain)
1
2
3
4
5
6
7
8
9
#include "asm/unistd_64.h" // for __NR_symlinkat

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

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

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