Committing in .

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
This commit is contained in:
Jouk Jansen 1999-11-12 11:08:29 +00:00
parent 61f0d452ea
commit d554e5da38

View 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