svn commit: r274944 - stable/9/lib/libc/stdio
Kevin Lo
kevlo at FreeBSD.org
Mon Nov 24 01:59:09 UTC 2014
Author: kevlo
Date: Mon Nov 24 01:59:08 2014
New Revision: 274944
URL: https://svnweb.freebsd.org/changeset/base/274944
Log:
MFC r273760:
Fix prototypes.
Modified:
stable/9/lib/libc/stdio/open_memstream.3 (contents, props changed)
Modified: stable/9/lib/libc/stdio/open_memstream.3
==============================================================================
--- stable/9/lib/libc/stdio/open_memstream.3 Mon Nov 24 01:56:33 2014 (r274943)
+++ stable/9/lib/libc/stdio/open_memstream.3 Mon Nov 24 01:59:08 2014 (r274944)
@@ -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
More information about the svn-src-stable-9
mailing list