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-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28771d553b6e828e99d8f93db1ff4dfe2a506fb9;p=pspp 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