Date: Thu, 17 Oct 2002 16:31:33 -0500 From: Kyle Martin <mkm@ieee.org> To: standards@freebsd.org Subject: a few missing types in math.h Message-ID: <20021017213133.GE364@marvin.bsdng.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20021017213133.GE364>