/* * Stub version of readlink. */ #include "config.h" #include <_ansi.h> #include <_syslist.h> #include #include #undef errno extern int errno; #include "warning.h" int _DEFUN (_readlink, (path, buf, bufsize), const char *path _AND char *buf _AND size_t bufsize) { errno = ENOSYS; return -1; } stub_warning(_readlink)