summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_scalbln.c
Commit message (Collapse)AuthorAgeFilesLines
* - Implement scalblnl.das2005-03-071-2/+34
| | | | | | - In scalbln and scalblnf, check the bounds of the second argument. This is probably unnecessary, but strictly speaking, we should report an error if someone tries to compute scalbln(x, INT_MAX + 1ll).
* Add trivial implementations of scalbln() and scalblnf().das2004-06-201-0/+44
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.
OpenPOWER on IntegriCloud