ref: 2db3642b8d3b871c6f9d1f4e3204b2f44fc4b79f 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; }