xref: /openbsd-src/gnu/usr.bin/cvs/vms/readlink.c (revision 2b0358df1d88d06ef4139321dd05bd5e05d91eaf)
1 int readlink(char *path, char *buf, int bufsiz)
2 {
3   /* OpenVMS dosen't have symbolic links in the UNIX sense */
4   return -1;
5 }
6