X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7af89395ba79fc2c6bb89037e409a5b46b4ee38d..7491d644e6103afc2a69b750ca255218181b63a3:/include/wx/filefn.h?ds=inline diff --git a/include/wx/filefn.h b/include/wx/filefn.h index b1523f117c..777973aabd 100644 --- a/include/wx/filefn.h +++ b/include/wx/filefn.h @@ -29,12 +29,14 @@ typedef long off_t; #endif -#if defined(__VISUALC__) || defined(__MWERKS__) +#if defined(__VISUALC__) || ( defined(__MWERKS__) && defined( __INTEL__) ) typedef _off_t off_t; #elif defined(__BORLANDC__) && defined(__WIN16__) typedef long off_t; #elif defined(__SC__) typedef long off_t; +#elif defined(__MWERKS__) && !defined(__INTEL__) + typedef long off_t; #endif const off_t wxInvalidOffset = (off_t)-1;