From: Chris Elliott Date: Tue, 23 Sep 2003 09:33:21 +0000 (+0000) Subject: fix watcom 64 bug (openwatcom1.1) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3ca91ffb3d3b39e857ae88f4d8d718d4d13e134f?ds=inline fix watcom 64 bug (openwatcom1.1) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23848 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/defs.h b/include/wx/defs.h index 65a3749190..67826af361 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -843,7 +843,7 @@ typedef wxUint32 wxDword; #define wxLongLongSuffix l #define wxLongLongFmtSpec _T("l") #define wxLongLongIsLong -#elif (defined(__VISUALC__) && defined(__WIN32__)) || defined( __VMS__ ) +#elif (defined(__VISUALC__) && defined(__WIN32__)) || defined( __VMS__ ) || defined (__WATCOM__) #define wxLongLong_t __int64 #define wxLongLongSuffix i64 #define wxLongLongFmtSpec _T("I64")