]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
authorJim Meyering <jim@meyering.net>
Sun, 27 Feb 2000 18:50:31 +0000 (18:50 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 27 Feb 2000 18:50:31 +0000 (18:50 +0000)
src/sys2.h

index 211e83fc64ba074f45962f4d141f5c9aa9cc99f9..bc88f96d6b77ab7ff34f2b954c01dd4b5a3fef2f 100644 (file)
@@ -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