diff options
author | das <das@FreeBSD.org> | 2009-03-04 03:38:51 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2009-03-04 03:38:51 +0000 |
commit | d92111a8dc86baa72bb5660ebba5ad3f2665dca9 (patch) | |
tree | a1df347e1257183601e8006328d2dc04e287ede2 /lib/libc/stdio/stdio.3 | |
parent | ee4adcf1a9a52bc4415201969e0fbc0451c46b47 (diff) | |
download | FreeBSD-src-d92111a8dc86baa72bb5660ebba5ad3f2665dca9.zip FreeBSD-src-d92111a8dc86baa72bb5660ebba5ad3f2665dca9.tar.gz |
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.
Diffstat (limited to 'lib/libc/stdio/stdio.3')
-rw-r--r-- | lib/libc/stdio/stdio.3 | 4 |
1 files changed, 3 insertions, 1 deletions
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" |