Date: Sun, 20 Jun 2004 09:25:27 +0000 (UTC) From: David Schultz <das@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/msun/src s_scalbln.c src/lib/msun/man ieee.3 Message-ID: <200406200925.i5K9PRKx092033@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
das 2004-06-20 09:25:27 UTC FreeBSD src repository Modified files: lib/msun/man ieee.3 Added files: lib/msun/src s_scalbln.c Log: Add trivial implementations of scalbln() and scalblnf(). These routines are specified in C99 for the sake of architectures where an int isn't big enough to represent the full range of floating-point exponents. However, even the 128-bit long double format has an exponent smaller than 15 bits, so for all practical purposes, scalbln() and scalblnf() are aliases for scalbn() and scalbnf(), respectively. Revision Changes Path 1.15 +15 -4 src/lib/msun/man/ieee.3 1.1 +44 -0 src/lib/msun/src/s_scalbln.c (new)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200406200925.i5K9PRKx092033>