aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/symlinkat.c
blob: 9b81ad901f27354ea7f706bc7f04e28150ddbb4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <unistd.h>
#include "syscall.h"

int symlinkat(const char *existing, int fd, const char *new)
{
	return syscall(SYS_symlinkat, existing, fd, new);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif