From owner-cvs-all@FreeBSD.ORG Sun Jan 18 02:32:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1732E16A4D2; Sun, 18 Jan 2004 02:32:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AA6743D45; Sun, 18 Jan 2004 02:32:50 -0800 (PST) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i0IAWo0B012954; Sun, 18 Jan 2004 02:32:50 -0800 (PST) (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i0IAWoMh012953; Sun, 18 Jan 2004 02:32:50 -0800 (PST) (envelope-from das) Message-Id: <200401181032.i0IAWoMh012953@repoman.freebsd.org> From: David Schultz Date: Sun, 18 Jan 2004 02:32:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/gdtoa Makefile.inc _hdtoa.c src/lib/libc/stdio vfprintf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2004 10:32:51 -0000 das 2004/01/18 02:32:50 PST FreeBSD src repository Modified files: lib/libc/gdtoa Makefile.inc lib/libc/stdio vfprintf.c Added files: lib/libc/gdtoa _hdtoa.c Log: Implement __hdtoa() and __hldtoa() and enable printf() support for %a and %A, which print floating-point numbers in hexadecimal. Revision Changes Path 1.6 +1 -1 src/lib/libc/gdtoa/Makefile.inc 1.1 +432 -0 src/lib/libc/gdtoa/_hdtoa.c (new) 1.62 +2 -5 src/lib/libc/stdio/vfprintf.c