From owner-freebsd-standards Thu Oct 17 14:32:10 2002 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 51C6637B401 for ; Thu, 17 Oct 2002 14:32:09 -0700 (PDT) Received: from marvin.bsdng.org (24-159-234-52.jvl.wi.charter.com [24.159.234.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4CCE43E7B for ; Thu, 17 Oct 2002 14:32:08 -0700 (PDT) (envelope-from mkm@marvin.bsdng.org) Received: by marvin.bsdng.org (Postfix, from userid 1000) id C5DFCAACA; Thu, 17 Oct 2002 16:31:33 -0500 (CDT) Date: Thu, 17 Oct 2002 16:31:33 -0500 From: Kyle Martin To: standards@freebsd.org Subject: a few missing types in math.h Message-ID: <20021017213133.GE364@marvin.bsdng.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-standards@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG double_t and float_t were missing, easy enough: Index: math.h =================================================================== RCS file: /home/ncvs/src/lib/msun/src/math.h,v retrieving revision 1.18 diff -c -r1.18 math.h *** math.h 1 Oct 2002 11:44:35 -0000 1.18 --- math.h 17 Oct 2002 20:56:31 -0000 *************** *** 24,29 **** --- 24,35 ---- #define HUGE_VAL (*(double *) __infinity) /* + * C99 + */ + typedef float float_t; + typedef double double_t; + + /* * XOPEN/SVID */ #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE) -- Kyle Martin mkm@ieee.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-standards" in the body of the message