From owner-cvs-lib Sun Feb 16 09:55:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA15384 for cvs-lib-outgoing; Sun, 16 Feb 1997 09:55:06 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA15369; Sun, 16 Feb 1997 09:55:03 -0800 (PST) Date: Sun, 16 Feb 1997 09:55:03 -0800 (PST) From: Bruce Evans Message-Id: <199702161755.JAA15369@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-lib Subject: cvs commit: src/lib/libF77 r_lg10.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 97/02/16 09:55:01 Modified: lib/libF77 r_lg10.c Log: Use the C library version of log10() instead of the inaccurate formula log10(x) = log10e * log(x). The formula would work if the RHS were evaluated in extended precision with an extended precision log(). This actually happened with the i387 log() because it returns excess precision. Found by: ucbtest Revision Changes Path 1.2 +1 -3 src/lib/libF77/r_lg10.c