summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-02-27 18:50:31 +0000
committerJim Meyering <jim@meyering.net>2000-02-27 18:50:31 +0000
commite43759db0c3d2333c4eb0455b6ae347d2d7a2bba (patch)
tree58fd127a1eff9750079c44dc572bd66d9ac2221e /src
parent507d0aa2782059da4ef0a8f5de332150491d25a2 (diff)
downloadcoreutils-e43759db0c3d2333c4eb0455b6ae347d2d7a2bba.tar.xz
Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
Diffstat (limited to 'src')
-rw-r--r--src/sys2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys2.h b/src/sys2.h
index 211e83fc6..bc88f96d6 100644
--- a/src/sys2.h
+++ b/src/sys2.h
@@ -301,7 +301,7 @@ unsigned long strtoul ();
#endif
/* This is needed on some AIX systems. */
-#if !HAVE_DECL_STRTOULL
+#if !HAVE_DECL_STRTOULL && HAVE_UNSIGNED_LONG_LONG
unsigned long long strtoull ();
#endif