xref: /openbsd-src/gnu/usr.bin/cvs/vms/readlink.c (revision 50bf276cd1c7e20f1eda64a5e63e0fae39e12a95)

readlink(char * path,char * buf,int bufsiz)1*50bf276cStholo int readlink(char *path, char *buf, int bufsiz)
2*50bf276cStholo {
3*50bf276cStholo   /* OpenVMS dosen't have symbolic links in the UNIX sense */
4*50bf276cStholo   return -1;
5*50bf276cStholo }
6