mirror of
https://github.com/reactos/reactos.git
synced 2025-05-19 17:14:32 +00:00
define _INTEGRAL_MAX_BITS only if it was not already defined
svn path=/trunk/; revision=38207
This commit is contained in:
parent
eced695a85
commit
aaf7ad6a2b
1 changed files with 3 additions and 1 deletions
|
@ -180,7 +180,9 @@ typedef PDWORD PLCID;
|
||||||
typedef WORD LANGID;
|
typedef WORD LANGID;
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
#define _HAVE_INT64
|
#define _HAVE_INT64
|
||||||
#define _INTEGRAL_MAX_BITS 64
|
#ifndef _INTEGRAL_MAX_BITS
|
||||||
|
# define _INTEGRAL_MAX_BITS 64
|
||||||
|
#endif
|
||||||
#undef __int64
|
#undef __int64
|
||||||
#define __int64 long long
|
#define __int64 long long
|
||||||
#elif defined(__WATCOMC__) && (defined(_INTEGRAL_MAX_BITS) && _INTEGRAL_MAX_BITS >= 64 )
|
#elif defined(__WATCOMC__) && (defined(_INTEGRAL_MAX_BITS) && _INTEGRAL_MAX_BITS >= 64 )
|
||||||
|
|
Loading…
Reference in a new issue