projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ef480c
)
(ecvt_r, fcvt_r): Fix type of last arg: make it size_t.
author
roland
<roland>
Mon, 18 Sep 1995 17:37:20 +0000
(17:37 +0000)
committer
roland
<roland>
Mon, 18 Sep 1995 17:37:20 +0000
(17:37 +0000)
stdlib/stdlib.h
patch
|
blob
|
history
diff --git
a/stdlib/stdlib.h
b/stdlib/stdlib.h
index
c6c504a
..
ba5a231
100644
(file)
--- a/
stdlib/stdlib.h
+++ b/
stdlib/stdlib.h
@@
-409,9
+409,9
@@
char *gcvt __P ((double __value, int __ndigit, char *__buf));
/* Reentrant version of the functions above which provide their own
buffers. */
int ecvt_r __P ((double __value, int __ndigit, int *__decpt, int *sign,
- char *__buf,
int *
__len));
+ char *__buf,
size_t
__len));
int fcvt_r __P ((double __value, int __ndigit, int *__decpt, int *sign,
- char *__buf,
int *
__len));
+ char *__buf,
size_t
__len));
#endif