mirror of
https://github.com/reactos/reactos.git
synced 2025-05-17 16:27:00 +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;
|
||||
#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 )
|
||||
|
|
Loading…
Reference in a new issue