Committing in .

Modified Files:
 	wxWindows/src/common/descrip.mms
 	wxWindows/src/generic/descrip.mms
 	wxWindows/src/unix/utilsunx.cpp

 Updates for VMS

----------------------------------------------------------------------


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@7984 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2000-08-09 09:51:03 +00:00
parent 1eaf19628c
commit 57681e5bfd
3 changed files with 16 additions and 3 deletions

View File

@@ -622,6 +622,13 @@ long wxExecute(wxChar **argv,
return exitcode;
#endif // wxUSE_GUI
}
#ifdef __VMS
// VMS does not recognise exit as a return and complains about
// a missing return
// I think VMS is wrong in this
// JJ
return 0;
#endif
}
#undef ARGS_CLEANUP