cygwin: fix __x86_64__ conditional in stdint.h

Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
This commit is contained in:
Yaakov Selkowitz
2015-03-10 10:44:47 -05:00
parent 84195ba6c5
commit 2a6db5083c
2 changed files with 5 additions and 1 deletions

View File

@ -114,7 +114,7 @@ typedef unsigned long long uintmax_t;
#if !defined (__cplusplus) || defined (__STDC_LIMIT_MACROS) \
|| defined (__INSIDE_CYGWIN__)
#if __x86_64__
#ifdef __x86_64__
# define __I64(n) n ## L
# define __U64(n) n ## UL
#else