Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Oct 2014 02:05:58 +0000 (UTC)
From:      Kevin Lo <kevlo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r273760 - head/lib/libc/stdio
Message-ID:  <201410280205.s9S25wwe032324@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevlo
Date: Tue Oct 28 02:05:57 2014
New Revision: 273760
URL: https://svnweb.freebsd.org/changeset/base/273760

Log:
  Fix prototypes.

Modified:
  head/lib/libc/stdio/open_memstream.3

Modified: head/lib/libc/stdio/open_memstream.3
==============================================================================
--- head/lib/libc/stdio/open_memstream.3	Tue Oct 28 01:34:01 2014	(r273759)
+++ head/lib/libc/stdio/open_memstream.3	Tue Oct 28 02:05:57 2014	(r273760)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410280205.s9S25wwe032324>