summaryrefslogtreecommitdiff
path: root/src/unistd/link.c
blob: 96e1e7b4ec429c8aa235d53ee8cbaddfd3a3c80b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
#include "nonstd/syscall.h"

int link(const char *path1, const char *path2)
{
	SYSCALL("link", int, -1, path1, path2, 0, 0, 0, 0);
}
/*
POSIX(1)
*/