cstdint: cygwin fixes for long long support

[SVN r8754]
This commit is contained in:
John Maddock
2001-01-24 12:18:30 +00:00
parent b5b41c73db
commit 50bd08d542

View File

@ -253,7 +253,7 @@ Added 23rd September (John Maddock).
// 64-bit types + intmax_t and uintmax_t ----------------------------------//
# if (defined(ULLONG_MAX) || defined(ULONG_LONG_MAX)) && !(defined(__CYGWIN__) || defined(__CYGWIN32__))
# if (defined(ULLONG_MAX) || defined(ULONG_LONG_MAX))
# if(defined(ULLONG_MAX) && ULLONG_MAX == 18446744073709551615) || \
(defined(ULONG_LONG_MAX) && ULONG_LONG_MAX == 18446744073709551615)
# define INT64_C(value) value##LL
@ -298,3 +298,4 @@ Added 23rd September (John Maddock).
# undef UINTMAX_C
#endif // __STDC_CONSTANT_MACROS_DEFINED etc.