From owner-cvs-all@FreeBSD.ORG Sat Oct 25 03:56:06 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 010B716A4B3; Sat, 25 Oct 2003 03:56:06 -0700 (PDT) Received: from fafoe.narf.at (chello212186121237.14.vie.surfer.at [212.186.121.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6A7343FBF; Sat, 25 Oct 2003 03:56:04 -0700 (PDT) (envelope-from stefan@fafoe.narf.at) Received: from wombat.fafoe.narf.at (wombat.fafoe.narf.at [192.168.2.102]) by fafoe.narf.at (Postfix) with ESMTP id 9016C40B8; Sat, 25 Oct 2003 12:56:02 +0200 (CEST) Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id 42BA288; Sat, 25 Oct 2003 12:56:02 +0200 (CEST) Date: Sat, 25 Oct 2003 12:56:02 +0200 From: Stefan Farfeleder To: Dag-Erling Smorgrav Message-ID: <20031025105600.GB571@wombat.fafoe.narf.at> References: <200310250932.h9P9WIHx081526@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="NzB8fVQJ5HfG6fxh" Content-Disposition: inline In-Reply-To: <200310250932.h9P9WIHx081526@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/msun Makefile src/lib/msun/src fabsl.c s_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: Sat, 25 Oct 2003 10:56:06 -0000 --NzB8fVQJ5HfG6fxh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Oct 25, 2003 at 02:32:18AM -0700, Dag-Erling Smorgrav wrote: > Added files: > lib/msun/src s_fabsl.c Here is an update for the man page. Stefan --NzB8fVQJ5HfG6fxh Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="fabs.3.diff" Index: /usr/home/stefan/freebsd/src/lib/msun/man/fabs.3 =================================================================== RCS file: /usr/home/ncvs/src/lib/msun/man/fabs.3,v retrieving revision 1.9 diff -u -r1.9 fabs.3 --- /usr/home/stefan/freebsd/src/lib/msun/man/fabs.3 13 Oct 2001 12:23:23 -0000 1.9 +++ /usr/home/stefan/freebsd/src/lib/msun/man/fabs.3 25 Oct 2003 10:52:13 -0000 @@ -33,12 +33,13 @@ .\" from: @(#)fabs.3 5.1 (Berkeley) 5/2/91 .\" $FreeBSD: src/lib/msun/man/fabs.3,v 1.9 2001/10/13 12:23:23 bde Exp $ .\" -.Dd May 2, 1991 +.Dd October 25, 2003 .Dt FABS 3 .Os .Sh NAME .Nm fabs , -.Nm fabsf +.Nm fabsf , +.Nm fabsl .Nd floating-point absolute value functions .Sh LIBRARY .Lb libm @@ -48,18 +49,24 @@ .Fn fabs "double x" .Ft float .Fn fabsf "float x" +.Ft long double +.Fn fabsl "long double x" .Sh DESCRIPTION The -.Fn fabs -and the +.Fn fabs , +the .Fn fabsf +and the +.Fn fabsl functions compute the absolute value of a floating-point number .Fa x . .Sh RETURN VALUES The -.Fn fabs -and the +.Fn fabs , +the .Fn fabsf +and the +.Fn fabsl functions return the absolute value of .Fa x . .Sh SEE ALSO @@ -74,3 +81,10 @@ .Fn fabs function conforms to .St -isoC . +The +.Fn fabsf +and the +.Fn fabsl +functions conform to +.St -isoC-99 . + --NzB8fVQJ5HfG6fxh--