ref: 1d07c2a1614a3121a5b9d86f95394caccd61ee56 dir: /sys/src/ape/lib/ap/plan9/link.c/
#include <unistd.h> #include <errno.h> /* * BUG: LINK_MAX==1 isn't really allowed */ int link(const char *, const char *) { errno = EMLINK; return -1; }