4 * Simple version of strdup for machines without it (ie DEC Ultrix 4.2)
5 * Apparently VMS only got strdup in 1995 (v5.2...)
10 * You can do anything you like to this... :)
11 * I've stolen it from xpilot and added it to the xvmstuils MPJZ ;-)
14 #if (__VMS_VER < 70000000)
18 char* strdup (const char* s1)
21 if (s2 = (char*)malloc(strlen(s1)+1))