From owner-cvs-src@FreeBSD.ORG Sun Jan 21 00:14:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A7BD216A404; Sun, 21 Jan 2007 00:14:01 +0000 (UTC) (envelope-from dwmalone@maths.tcd.ie) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by mx1.freebsd.org (Postfix) with SMTP id 82C5013C45B; Sun, 21 Jan 2007 00:14:00 +0000 (UTC) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie ([134.226.81.10] helo=walton.maths.tcd.ie) by salmon.maths.tcd.ie with SMTP id ; 20 Jan 2007 20:42:26 +0000 (GMT) Date: Sat, 20 Jan 2007 20:42:25 +0000 From: David Malone To: Sam Leffler Message-ID: <20070120204225.GA92792@walton.maths.tcd.ie> References: <200701201932.l0KJWNST091647@repoman.freebsd.org> <45B271AD.9000503@samsco.org> <45B275F0.9030904@errno.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <45B275F0.9030904@errno.com> User-Agent: Mutt/1.5.6i Sender: dwmalone@maths.tcd.ie Cc: cvs-src@FreeBSD.org, Scott Long , src-committers@FreeBSD.org, Alexander Leidinger , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/linprocfs linprocfs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jan 2007 00:14:01 -0000 On Sat, Jan 20, 2007 at 12:05:04PM -0800, Sam Leffler wrote: > Are the kernel prinf extensions documented anywhere (don't see 'em in > printf(9))? I always forget and have to resort to the code... %jd and %zd are standard printf modifiers (as of C99 anyway) and are documented in printf(3). David.