From owner-cvs-src-old@FreeBSD.ORG Wed Mar 4 03:51:07 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CF781065674 for ; Wed, 4 Mar 2009 03:51:07 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 49B3B8FC18 for ; Wed, 4 Mar 2009 03:51:07 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n243p7JB013268 for ; Wed, 4 Mar 2009 03:51:07 GMT (envelope-from das@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n243p7uO013267 for cvs-src-old@freebsd.org; Wed, 4 Mar 2009 03:51:07 GMT (envelope-from das@repoman.freebsd.org) Message-Id: <200903040351.n243p7uO013267@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to das@repoman.freebsd.org using -f From: David Schultz Date: Wed, 4 Mar 2009 03:38:51 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include stdio.h src/lib/libc/stdio Makefile.inc Symbol.map dprintf.c printf.3 stdio.3 vdprintf.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Mar 2009 03:51:07 -0000 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)