xref: /openbsd-src/gnu/usr.bin/cvs/vms/readlink.c (revision b2ea75c1b17e1a9a339660e7ed45cd24946b230e)
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