summaryrefslogtreecommitdiff
path: root/lib/inttypes.in.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2009-02-27 16:49:01 +0100
committerBruno Haible <bruno@clisp.org>2009-02-27 16:49:01 +0100
commitb9031386bfe80cb42091cf173d6e2f29c761df65 (patch)
treea99a18bf61148dc2ccb4f14c8d5cfd206109d61f /lib/inttypes.in.h
parent39e5b7a29f70277930668dec88fb3f418f42f98b (diff)
downloadgnulib-b9031386bfe80cb42091cf173d6e2f29c761df65.tar.gz
Use 'defined _LP64'.
Diffstat (limited to 'lib/inttypes.in.h')
-rw-r--r--lib/inttypes.in.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/inttypes.in.h b/lib/inttypes.in.h
index 33cec2d258..7022ebc354 100644
--- a/lib/inttypes.in.h
+++ b/lib/inttypes.in.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2006-2008 Free Software Foundation, Inc.
+/* Copyright (C) 2006-2009 Free Software Foundation, Inc.
Written by Paul Eggert, Bruno Haible, Derek Price.
This file is part of gnulib.
@@ -168,7 +168,7 @@
# endif
# endif
# ifdef INT64_MAX
-# if (@APPLE_UNIVERSAL_BUILD@ ? _LP64 : @INT64_MAX_EQ_LONG_MAX@)
+# if (@APPLE_UNIVERSAL_BUILD@ ? defined _LP64 : @INT64_MAX_EQ_LONG_MAX@)
# define _PRI64_PREFIX "l"
# elif defined _MSC_VER || defined __MINGW32__
# define _PRI64_PREFIX "I64"
@@ -185,7 +185,7 @@
# endif
# endif
# ifdef UINT64_MAX
-# if (@APPLE_UNIVERSAL_BUILD@ ? _LP64 : @UINT64_MAX_EQ_ULONG_MAX@)
+# if (@APPLE_UNIVERSAL_BUILD@ ? defined _LP64 : @UINT64_MAX_EQ_ULONG_MAX@)
# define _PRIu64_PREFIX "l"
# elif defined _MSC_VER || defined __MINGW32__
# define _PRIu64_PREFIX "I64"
@@ -661,7 +661,7 @@
# endif
# endif
# ifdef INT64_MAX
-# if (@APPLE_UNIVERSAL_BUILD@ ? _LP64 : @INT64_MAX_EQ_LONG_MAX@)
+# if (@APPLE_UNIVERSAL_BUILD@ ? defined _LP64 : @INT64_MAX_EQ_LONG_MAX@)
# define _SCN64_PREFIX "l"
# elif defined _MSC_VER || defined __MINGW32__
# define _SCN64_PREFIX "I64"
@@ -678,7 +678,7 @@
# endif
# endif
# ifdef UINT64_MAX
-# if (@APPLE_UNIVERSAL_BUILD@ ? _LP64 : @UINT64_MAX_EQ_ULONG_MAX@)
+# if (@APPLE_UNIVERSAL_BUILD@ ? defined _LP64 : @UINT64_MAX_EQ_ULONG_MAX@)
# define _SCNu64_PREFIX "l"
# elif defined _MSC_VER || defined __MINGW32__
# define _SCNu64_PREFIX "I64"