Make sure that __int64/long long types in crt don't produce warnings in ISO-C/C++ mode.

svn path=/branches/header-work/; revision=45722
This commit is contained in:
Kai Tietz 2010-02-28 09:37:57 +00:00
parent 98cde9a0b4
commit fd0d53d19d
14 changed files with 136 additions and 136 deletions

View file

@ -29,7 +29,7 @@ extern "C" {
#if defined(__GNUC__) && defined(__STRICT_ANSI__)
typedef unsigned int uintptr_t __attribute__ ((mode (DI)));
#else
typedef unsigned __int64 uintptr_t;
__MINGW_EXTENSION typedef unsigned __int64 uintptr_t;
#endif
#else
typedef unsigned long uintptr_t;