summaryrefslogtreecommitdiff
path: root/src/unistd/symlink.c
blob: 5902d45a1af556ce5de7ea32e17aafb68b2e8540 (plain) (blame)
1
2
3
4
5
6
7
#include <unistd.h>
#include "syscall.h"

int symlink(const char *existing, const char *new)
{
	return syscall(SYS_symlink, existing, new);
}