projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
28771d5
)
Fix typo in decl of strtoul: s/long long/long/.
author
Jim Meyering
<jim@meyering.net>
Sun, 27 Feb 2000 18:49:10 +0000
(18:49 +0000)
committer
Jim Meyering
<jim@meyering.net>
Sun, 27 Feb 2000 18:49:10 +0000
(18:49 +0000)
Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
lib/strtoumax.c
patch
|
blob
|
history
diff --git
a/lib/strtoumax.c
b/lib/strtoumax.c
index 125e087f9d5f0b23411ee6ef181f7145fe9d4aaa..a147604ad2bb32c012a0d56232eb6a7e09c0f48c 100644
(file)
--- 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