From owner-cvs-all@FreeBSD.ORG Fri Oct 24 01:33:56 2003 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 77FE616A4BF; Fri, 24 Oct 2003 01:33:56 -0700 (PDT) Received: from VARK.homeunix.com (adsl-68-124-23-137.dsl.pltn13.pacbell.net [68.124.23.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DED743F85; Fri, 24 Oct 2003 01:33:55 -0700 (PDT) (envelope-from das@FreeBSD.ORG) Received: from VARK.homeunix.com (localhost [127.0.0.1]) by VARK.homeunix.com (8.12.9/8.12.9) with ESMTP id h9O8Xaen010547; Fri, 24 Oct 2003 01:33:36 -0700 (PDT) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by VARK.homeunix.com (8.12.9/8.12.9/Submit) id h9O8XaJ1010546; Fri, 24 Oct 2003 01:33:36 -0700 (PDT) (envelope-from das@FreeBSD.ORG) Date: Fri, 24 Oct 2003 01:33:36 -0700 From: David Schultz To: Dag-Erling Smorgrav Message-ID: <20031024083336.GA10360@VARK.homeunix.com> Mail-Followup-To: Dag-Erling Smorgrav , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200310230820.h9N8KlSD025966@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310230820.h9N8KlSD025966@repoman.freebsd.org> cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/msun/src fabsl.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: Fri, 24 Oct 2003 08:33:56 -0000 On Thu, Oct 23, 2003, Dag-Erling Smorgrav wrote: > des 2003/10/23 01:20:47 PDT > > FreeBSD src repository > > Added files: > lib/msun/src fabsl.c > Log: > Implement fabsl(3), allowing the world to build with -fno-builtin. [...] > +long double > +fabsl(long double x) > +{ > + return (x < 0) ? -x : x; > +} Cool. This has a minor bug in that it does the wrong thing for -0.