diff options
author | Jim Meyering <jim@meyering.net> | 2000-02-27 18:49:10 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-02-27 18:49:10 +0000 |
commit | 507d0aa2782059da4ef0a8f5de332150491d25a2 (patch) | |
tree | 7ae98c970345fabbe025f169524999257b54c109 /lib | |
parent | 86845e9bfe22a99124bda0f125bd1b80eef847cc (diff) | |
download | coreutils-507d0aa2782059da4ef0a8f5de332150491d25a2.tar.xz |
Fix typo in decl of strtoul: s/long long/long/.
Guard declaration of strtoull also with `&& HAVE_UNSIGNED_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 125e087f9..a147604ad 100644 --- a/lib/strtoumax.c +++ b/lib/strtoumax.c @@ -47,7 +47,7 @@ unsigned long strtoul PARAMS ((char const *, char **, int)); #ifndef HAVE_DECL_STRTOULL "this configure-time declaration test was not run" #endif -#if !HAVE_DECL_STRTOULL +#if !HAVE_DECL_STRTOULL && HAVE_UNSIGNED_LONG_LONG unsigned long long strtoull PARAMS ((char const *, char **, int)); #endif |