From: Jim Meyering Date: Sun, 27 Feb 2000 18:45:29 +0000 (+0000) Subject: Fix typo in decl of strtoul: s/long long/long/. X-Git-Tag: FILEUTILS-4_0q~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=86845e9bfe22a99124bda0f125bd1b80eef847cc;p=thirdparty%2Fcoreutils.git Fix typo in decl of strtoul: s/long long/long/. --- diff --git a/lib/strtoumax.c b/lib/strtoumax.c index 1041b99c57..125e087f9d 100644 --- a/lib/strtoumax.c +++ b/lib/strtoumax.c @@ -41,7 +41,7 @@ "this configure-time declaration test was not run" #endif #if !HAVE_DECL_STRTOUL -unsigned long long strtoul PARAMS ((char const *, char **, int)); +unsigned long strtoul PARAMS ((char const *, char **, int)); #endif #ifndef HAVE_DECL_STRTOULL