cygwin: fix __x86_64__ conditional in stdint.h
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
This commit is contained in:
parent
84195ba6c5
commit
2a6db5083c
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue