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

@ -1,3 +1,7 @@
2015-03-10 Yaakov Selkowitz <yselkowitz@cygwin.com>
* include/stdint.h: Fix __x86_64__ conditional.
2015-03-05 Corinna Vinschen <corinna@vinschen.de>
* tty.h (tty::set_master_ctl_closed): Rename from set_master_closed.

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