From owner-freebsd-standards@FreeBSD.ORG Wed Jun 9 12:16:11 2004 Return-Path: Delivered-To: freebsd-standards@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1193716A4CE for ; Wed, 9 Jun 2004 12:16:11 +0000 (GMT) Received: from bgezal.rise.tuwien.ac.at (bgezal.rise.tuwien.ac.at [128.130.59.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F93C43D66 for ; Wed, 9 Jun 2004 12:16:10 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from fafoe.narf.at (unknown [212.186.3.235]) by bgezal.rise.tuwien.ac.at (Postfix) with ESMTP id CDB3B20B0 for ; Wed, 9 Jun 2004 14:16:05 +0200 (CEST) Received: from wombat.fafoe.narf.at (wombat.fafoe.narf.at [192.168.1.42]) by fafoe.narf.at (Postfix) with ESMTP id 8337640B6 for ; Wed, 9 Jun 2004 14:15:55 +0200 (CEST) Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id 5CC8F38C; Wed, 9 Jun 2004 14:15:51 +0200 (CEST) Date: Wed, 9 Jun 2004 14:15:50 +0200 From: Stefan Farfeleder To: standards@FreeBSD.ORG Message-ID: <20040609121547.GG715@wombat.fafoe.narf.at> Mail-Followup-To: standards@FreeBSD.ORG References: <20040602073235.GA6457@VARK.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040602073235.GA6457@VARK.homeunix.com> User-Agent: Mutt/1.5.6i Subject: Re: RFC: fenv.h X-BeenThere: freebsd-standards@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Standards compliance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jun 2004 12:16:11 -0000 On Wed, Jun 02, 2004 at 12:32:35AM -0700, David Schultz wrote: > The following patch adds the fenv.h header to FreeBSD. I would > appreciate any reviews of these changes. Descriptions of the various > functions are included in the patch in the form of some manpages. Thanks for committing this! Just a small nit: Using inline functions with internal linkage to implement standard library functions isn't 100% conforming. 7.1.2#6: Any declaration of a library function shall have external linkage. 7.1.4#2: Provided that a library function can be declared without reference to any type defined in a header, it is also permissible to declare the function and use it without including its associated header. Stefan