define _INTEGRAL_MAX_BITS only if it was not already defined

svn path=/trunk/; revision=38207
This commit is contained in:
Timo Kreuzer 2008-12-20 23:16:49 +00:00
parent eced695a85
commit aaf7ad6a2b

View file

@ -180,7 +180,9 @@ typedef PDWORD PLCID;
typedef WORD LANGID;
#ifdef __GNUC__
#define _HAVE_INT64
#define _INTEGRAL_MAX_BITS 64
#ifndef _INTEGRAL_MAX_BITS
# define _INTEGRAL_MAX_BITS 64
#endif
#undef __int64
#define __int64 long long
#elif defined(__WATCOMC__) && (defined(_INTEGRAL_MAX_BITS) && _INTEGRAL_MAX_BITS >= 64 )