summaryrefslogtreecommitdiff
path: root/vms/readlink.c
diff options
context:
space:
mode:
Diffstat (limited to 'vms/readlink.c')
-rw-r--r--vms/readlink.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/vms/readlink.c b/vms/readlink.c
new file mode 100644
index 0000000..1d844d7
--- /dev/null
+++ b/vms/readlink.c
@@ -0,0 +1,5 @@
+int readlink(char *path, char *buf, int bufsiz)
+{
+ /* OpenVMS dosen't have symbolic links in the UNIX sense */
+ return -1;
+}