summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include/stdint.h
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2015-03-10 10:44:47 -0500
committerYaakov Selkowitz <yselkowi@redhat.com>2015-03-10 16:32:52 -0500
commit2a6db5083cae9c7f54a72b693bc9e7984d513483 (patch)
tree9f52e22ae71d8d4f5c05b9ff45e2022c48b6e13f /winsup/cygwin/include/stdint.h
parent84195ba6c5f02bd8941d2949614d97b50cf2a554 (diff)
downloadcygnal-2a6db5083cae9c7f54a72b693bc9e7984d513483.tar.gz
cygnal-2a6db5083cae9c7f54a72b693bc9e7984d513483.tar.bz2
cygnal-2a6db5083cae9c7f54a72b693bc9e7984d513483.zip
cygwin: fix __x86_64__ conditional in stdint.h
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'winsup/cygwin/include/stdint.h')
-rw-r--r--winsup/cygwin/include/stdint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/include/stdint.h b/winsup/cygwin/include/stdint.h
index b670884a7..94b6b7673 100644
--- a/winsup/cygwin/include/stdint.h
+++ b/winsup/cygwin/include/stdint.h
@@ -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