summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/plan9/link.c
blob: 293cb60c16a95484be9bd0f52d78ab19f8dcf328 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <unistd.h>
#include <errno.h>

/*
 * BUG: LINK_MAX==1 isn't really allowed
 */
int
link(const char *, const char *)
{
	errno = EMLINK;
	return -1;
}