diff options
author | brueffer <brueffer@FreeBSD.org> | 2009-12-02 07:51:25 +0000 |
---|---|---|
committer | brueffer <brueffer@FreeBSD.org> | 2009-12-02 07:51:25 +0000 |
commit | 78cff0361bc897ea25a0b90fc331bb2493be8e11 (patch) | |
tree | c12ad4794d425d1260d0cb48930c25571431e776 /lib/libc/stdio/printf.3 | |
parent | 7364974a54a72616eeb3b874f04e506573226c7a (diff) | |
download | FreeBSD-src-78cff0361bc897ea25a0b90fc331bb2493be8e11.zip FreeBSD-src-78cff0361bc897ea25a0b90fc331bb2493be8e11.tar.gz |
Fix the dprintf() prototype.
PR: 141087
Submitted by: Jeremy Huddleston <jeremyhu@apple.com>
MFC after: 3 days
Diffstat (limited to 'lib/libc/stdio/printf.3')
-rw-r--r-- | lib/libc/stdio/printf.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/printf.3 b/lib/libc/stdio/printf.3 index 27d5bf0..2587aa2 100644 --- a/lib/libc/stdio/printf.3 +++ b/lib/libc/stdio/printf.3 @@ -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" |