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

int link(const char *existing, const char *new)
{
	return syscall2(__NR_link, (long)existing, (long)new);
}