From: Jim Meyering Date: Sun, 27 Feb 2000 18:49:10 +0000 (+0000) Subject: Fix typo in decl of strtoul: s/long long/long/. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82af802d9985c1e76d91d6125703706a93d712f2;p=pspp Fix typo in decl of strtoul: s/long long/long/. Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'. --- 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