From 65df77ec74a1dc36af9eb27205859eb604b1a5c4 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Mon, 27 Sep 2004 21:08:54 +0000 Subject: [PATCH] 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 --- include/wx/filefn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.0