]> git.saurik.com Git - wxWidgets.git/commitdiff
Committing in .
authorJouk Jansen <joukj@hrem.nano.tudelft.nl>
Fri, 12 Nov 1999 11:08:29 +0000 (11:08 +0000)
committerJouk Jansen <joukj@hrem.nano.tudelft.nl>
Fri, 12 Nov 1999 11:08:29 +0000 (11:08 +0000)
 VMS7.x patch

 Modified Files:
  wxWindows/src/common/doslex.c

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4496 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/doslex.c

index 94234160cbda41c2d44a2444fa14f47de0a61fe8..3dbdde99eda55b24a2917bc31c5e232efb71a95f 100644 (file)
@@ -231,7 +231,7 @@ extern char *malloc();
 #endif
 #define Return(x) return x;
 
-#if defined(VMS) && !defined(strdup)
+#if defined(VMS) && ( __VMS_VER < 70000000 )
 #define strdup(s) (strcpy((char *)malloc(strlen(s)+1), s));
 #endif