svn commit: r274943 - stable/10/lib/libc/stdio
    Kevin Lo 
    kevlo at FreeBSD.org
       
    Mon Nov 24 01:56:34 UTC 2014
    
    
  
Author: kevlo
Date: Mon Nov 24 01:56:33 2014
New Revision: 274943
URL: https://svnweb.freebsd.org/changeset/base/274943
Log:
  MFC r273760:
  Fix prototypes.
Modified:
  stable/10/lib/libc/stdio/open_memstream.3
Directory Properties:
  stable/10/   (props changed)
Modified: stable/10/lib/libc/stdio/open_memstream.3
==============================================================================
--- stable/10/lib/libc/stdio/open_memstream.3	Mon Nov 24 01:25:19 2014	(r274942)
+++ stable/10/lib/libc/stdio/open_memstream.3	Mon Nov 24 01:56:33 2014	(r274943)
@@ -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-10
mailing list