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

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