changeset 2297:3167c15fd0aa

Fix typo in decl of strtoul: s/long long/long/. Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
author Jim Meyering <jim@meyering.net>
date Sun, 27 Feb 2000 18:49:10 +0000
parents 1d486bbff0f2
children a138b3e25b61
files lib/strtoumax.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/strtoumax.c
+++ b/lib/strtoumax.c
@@ -47,7 +47,7 @@
 #ifndef HAVE_DECL_STRTOULL
 "this configure-time declaration test was not run"
 #endif
-#if !HAVE_DECL_STRTOULL
+#if !HAVE_DECL_STRTOULL && HAVE_UNSIGNED_LONG_LONG
 unsigned long long strtoull PARAMS ((char const *, char **, int));
 #endif