#include <errno.h>

int
link()
{
	errno=EXDEV;
	return -1;
}
