1 2 3 4 5 6 7
#include <errno.h> int _link(const char *old_name, const char *new_name) { errno = ENOSYS; return -1; }