diff options
author | kevlo <kevlo@FreeBSD.org> | 2014-10-28 02:05:57 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2014-10-28 02:05:57 +0000 |
commit | 0610f4828fa1441c483d02bc6547fdaf849eee9b (patch) | |
tree | b6c809ccf4b2ab74c83ffa09b170e6c483e0e423 /lib/libc/stdio | |
parent | 905da59627cfdc29c5f6aa8012df8738489cbffe (diff) | |
download | FreeBSD-src-0610f4828fa1441c483d02bc6547fdaf849eee9b.zip FreeBSD-src-0610f4828fa1441c483d02bc6547fdaf849eee9b.tar.gz |
Fix prototypes.
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/open_memstream.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdio/open_memstream.3 b/lib/libc/stdio/open_memstream.3 index 9396830..117dcb2 100644 --- a/lib/libc/stdio/open_memstream.3 +++ b/lib/libc/stdio/open_memstream.3 @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd February 27, 2013 +.Dd October 28, 2014 .Dt OPEN_MEMSTREAM 3 .Os .Sh NAME @@ -37,10 +37,10 @@ .Sh SYNOPSIS .In stdio.h .Ft FILE * -.Fn open_memstream "char **bufp" "size_t **sizep" +.Fn open_memstream "char **bufp" "size_t *sizep" .In wchar.h .Ft FILE * -.Fn open_wmemstream "wchar_t **bufp" "size_t **sizep" +.Fn open_wmemstream "wchar_t **bufp" "size_t *sizep" .Sh DESCRIPTION The .Fn open_memstream |