compilation fix for Watcom (part of patch 813225)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24201 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-10-16 11:23:07 +00:00
parent 3cb9989457
commit 311ccb86e4
2 changed files with 28 additions and 24 deletions

View File

@@ -112,7 +112,11 @@ enum wxSeekMode
#endif
#define wxAccess _access
#define wxMkDir _mkdir
#ifdef __WATCOMC__
#define wxRmDir rmdir
#else
#define wxRmDir _rmdir
#endif
#define wxStat _stat
#endif