From owner-cvs-all@FreeBSD.ORG Sun May 2 03:55:07 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 ED12D16A4D0; Sun, 2 May 2004 03:55:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9CAF43D41; Sun, 2 May 2004 03:55:06 -0700 (PDT) (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 i42At6Ge019903; Sun, 2 May 2004 03:55:06 -0700 (PDT) (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i42At5Qv019900; Sun, 2 May 2004 03:55:05 -0700 (PDT) (envelope-from das) Message-Id: <200405021055.i42At5Qv019900@repoman.freebsd.org> From: David Schultz Date: Sun, 2 May 2004 03:55:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdio vfprintf.c vfscanf.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, 02 May 2004 10:55:07 -0000 das 2004/05/02 03:55:05 PDT FreeBSD src repository Modified files: lib/libc/stdio vfprintf.c vfscanf.c Log: - To make it easier to compile *printf() and *scanf() without floating-point support, remove default definition of FLOATING_POINT from the source, and change the compile-time option to NO_FLOATING_POINT. - Remove the HEXFLOAT option. It saves an insignificant amount of space (<0.1% of the size of libc on i386) and complicates vfprintf() and checkfmt(). Revision Changes Path 1.65 +16 -24 src/lib/libc/stdio/vfprintf.c 1.37 +5 -7 src/lib/libc/stdio/vfscanf.c