From 28771d553b6e828e99d8f93db1ff4dfe2a506fb9 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 27 Feb 2000 18:45:29 +0000 Subject: [PATCH] Fix typo in decl of strtoul: s/long long/long/. --- lib/strtoumax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2