shithub: riscv

ref: 4308f6e7e6586e3a27aa46c4d54c434b8533b16d
dir: /sys/src/ape/lib/ap/plan9/link.c/

View raw version
#include <unistd.h>
#include <errno.h>

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