Date: Wed, 4 Mar 2009 03:38:51 +0000 (UTC) From: David Schultz <das@FreeBSD.org> To: cvs-src-old@freebsd.org Subject: cvs commit: src/include stdio.h src/lib/libc/stdio Makefile.inc Symbol.map dprintf.c printf.3 stdio.3 vdprintf.c Message-ID: <200903040351.n243p7uO013267@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
das 2009-03-04 03:38:51 UTC FreeBSD src repository Modified files: include stdio.h lib/libc/stdio Makefile.inc Symbol.map printf.3 stdio.3 Added files: lib/libc/stdio dprintf.c vdprintf.c Log: SVN rev 189356 on 2009-03-04 03:38:51Z by das 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. Revision Changes Path 1.76 +20 -4 src/include/stdio.h 1.41 +5 -4 src/lib/libc/stdio/Makefile.inc 1.10 +2 -0 src/lib/libc/stdio/Symbol.map 1.1 +46 -0 src/lib/libc/stdio/dprintf.c (new) 1.63 +76 -27 src/lib/libc/stdio/printf.3 1.30 +3 -1 src/lib/libc/stdio/stdio.3 1.1 +66 -0 src/lib/libc/stdio/vdprintf.c (new)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200903040351.n243p7uO013267>