From 82af802d9985c1e76d91d6125703706a93d712f2 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 27 Feb 2000 18:49:10 +0000 Subject: [PATCH] Fix typo in decl of strtoul: s/long long/long/. Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'. --- lib/strtoumax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/strtoumax.c b/lib/strtoumax.c index 125e087f9d..a147604ad2 100644 --- a/lib/strtoumax.c +++ b/lib/strtoumax.c @@ -47,7 +47,7 @@ unsigned long strtoul PARAMS ((char const *, char **, int)); #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 -- 2.30.2