From: Julian Smart Date: Mon, 27 Sep 2004 21:08:54 +0000 (+0000) Subject: Don't try to typedef off_t twice (eVC++) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/65df77ec74a1dc36af9eb27205859eb604b1a5c4 Don't try to typedef off_t twice (eVC++) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29477 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/filefn.h b/include/wx/filefn.h index def21bb847..7afa113cd1 100644 --- a/include/wx/filefn.h +++ b/include/wx/filefn.h @@ -107,7 +107,7 @@ #endif #endif -#if defined(__VISUALC__) || ( defined(__MWERKS__) && defined( __INTEL__) ) +#if (defined(__VISUALC__) && !defined(__WXWINCE__)) || ( defined(__MWERKS__) && defined( __INTEL__) ) typedef _off_t off_t; #elif defined(__SYMANTEC__) typedef long off_t;