summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-02-27 18:45:29 +0000
committerJim Meyering <jim@meyering.net>2000-02-27 18:45:29 +0000
commit86845e9bfe22a99124bda0f125bd1b80eef847cc (patch)
treea44837d29582436f24b36d24e23d6da6f704c7ee
parent633c0745b9b36bfbe9ca1f0dbe8c91b08a802ce6 (diff)
downloadcoreutils-86845e9bfe22a99124bda0f125bd1b80eef847cc.tar.xz
Fix typo in decl of strtoul: s/long long/long/.
-rw-r--r--lib/strtoumax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strtoumax.c b/lib/strtoumax.c
index 1041b99c5..125e087f9 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