diff options
Diffstat (limited to 'utils/vms-strdup.c')
-rw-r--r-- | utils/vms-strdup.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/utils/vms-strdup.c b/utils/vms-strdup.c deleted file mode 100644 index 1afc257..0000000 --- a/utils/vms-strdup.c +++ /dev/null @@ -1,25 +0,0 @@ -/* - * 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 |