From d92111a8dc86baa72bb5660ebba5ad3f2665dca9 Mon Sep 17 00:00:00 2001 From: das Date: Wed, 4 Mar 2009 03:38:51 +0000 Subject: Add dprintf() and vdprintf() from POSIX.1-2008. Like getline(), dprintf() is a simple wrapper around another function, so we may as well implement it. But also like getline(), we can't prototype it by default right now because it would break too many ports. --- lib/libc/stdio/stdio.3 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/libc/stdio/stdio.3') diff --git a/lib/libc/stdio/stdio.3 b/lib/libc/stdio/stdio.3 index a4d1eb7..53320b5 100644 --- a/lib/libc/stdio/stdio.3 +++ b/lib/libc/stdio/stdio.3 @@ -28,7 +28,7 @@ .\" @(#)stdio.3 8.7 (Berkeley) 4/19/94 .\" $FreeBSD$ .\" -.Dd February 28, 2009 +.Dd March 3, 2009 .Dt STDIO 3 .Os .Sh NAME @@ -243,6 +243,7 @@ library conforms to .It Sy "Function Description" .It "asprintf formatted output conversion" .It "clearerr check and reset stream status" +.It "dprintf formatted output conversion" .It "fclose close a stream" .It "fdopen stream open functions" .It "feof check and reset stream status" @@ -313,6 +314,7 @@ library conforms to .It "ungetc un-get character from input stream" .It "ungetwc un-get wide character from input stream" .It "vasprintf formatted output conversion" +.It "vdprintf formatted output conversion" .It "vfprintf formatted output conversion" .It "vfscanf input format conversion" .It "vfwprintf formatted wide character output conversion" -- cgit v1.1