use _fileno() instead of fileno() with VC

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60928 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-06-06 23:18:52 +00:00
parent 50a73bb104
commit d4b1783215

View File

@@ -40,6 +40,10 @@
#include <winioctl.h>
#endif
#ifdef __VISUALC__
#define fileno _fileno
#endif
using std::auto_ptr;