svn commit: r200019 - head/lib/libc/stdio

Christian Brueffer brueffer at FreeBSD.org
Wed Dec 2 07:51:26 UTC 2009


Author: brueffer
Date: Wed Dec  2 07:51:25 2009
New Revision: 200019
URL: http://svn.freebsd.org/changeset/base/200019

Log:
  Fix the dprintf() prototype.
  
  PR:		141087
  Submitted by:	Jeremy Huddleston <jeremyhu at apple.com>
  MFC after:	3 days

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

Modified: head/lib/libc/stdio/printf.3
==============================================================================
--- head/lib/libc/stdio/printf.3	Wed Dec  2 06:49:22 2009	(r200018)
+++ head/lib/libc/stdio/printf.3	Wed Dec  2 07:51:25 2009	(r200019)
@@ -32,7 +32,7 @@
 .\"     @(#)printf.3	8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd March 3, 2009
+.Dd December 2, 2009
 .Dt PRINTF 3
 .Os
 .Sh NAME
@@ -55,7 +55,7 @@
 .Ft int
 .Fn asprintf "char **ret" "const char *format" ...
 .Ft int
-.Fn dprintf "int" "const char * restrict format" ...
+.Fn dprintf "int fd" "const char * restrict format" ...
 .In stdarg.h
 .Ft int
 .Fn vprintf "const char * restrict format" "va_list ap"


More information about the svn-src-all mailing list