summaryrefslogtreecommitdiffstats
path: root/utils/vms-strdup.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/vms-strdup.c')
-rw-r--r--utils/vms-strdup.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/utils/vms-strdup.c b/utils/vms-strdup.c
new file mode 100644
index 0000000..1afc257
--- /dev/null
+++ b/utils/vms-strdup.c
@@ -0,0 +1,25 @@
+/*
+ * strdup.c
+ *
+ * Simple version of strdup for machines without it (ie DEC Ultrix 4.2)
+ * Apparently VMS only got strdup in 1995 (v5.2...)
+ *
+ * By David Chatterton
+ * 29 July 1993
+ *
+ * You can do anything you like to this... :)
+ * I've stolen it from xpilot and added it to the xvmstuils MPJZ ;-)
+ */
+
+#if (__VMS_VER < 70000000)
+#include <stdlib.h>
+#include <string.h>
+
+char* strdup (const char* s1)
+{
+ char* s2;
+ if (s2 = (char*)malloc(strlen(s1)+1))
+ strcpy(s2,s1);
+ return s2;
+}
+#endif