diff options
author | Jim Meyering <jim@meyering.net> | 2000-02-27 18:45:29 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-02-27 18:45:29 +0000 |
commit | 86845e9bfe22a99124bda0f125bd1b80eef847cc (patch) | |
tree | a44837d29582436f24b36d24e23d6da6f704c7ee /lib | |
parent | 633c0745b9b36bfbe9ca1f0dbe8c91b08a802ce6 (diff) | |
download | coreutils-86845e9bfe22a99124bda0f125bd1b80eef847cc.tar.xz |
Fix typo in decl of strtoul: s/long long/long/.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/strtoumax.c | 2 |
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 |