summaryrefslogtreecommitdiffstats
path: root/libm/s_scalbn.c
Commit message (Collapse)AuthorAgeFilesLines
* Add a few missing includesRon2009-07-091-0/+1
| | | | | | | | | elf.h needs __BYTE_ORDER, and s_scalbn.c needs {LONG,INT}_MAX. shm.c complains about no prototypes for shm_{open,unlink} without its header. Signed-off-by: Ron Lee <ron@debian.org> Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* fix small goof in last commit: should use "long" function (scalbln)Denis Vlasenko2009-01-031-10/+10
| | | | | as a main one, not "int" one (scalbn).
* libm: remove scalbln implementation, it seems to be less correct than scalbn.Denis Vlasenko2009-01-031-25/+47
| | | | | | | | | | instead, either alias scalbln to scalbn if int == long on this arch, or just call scalbn form scalbln. text data bss dec hex filename - 45297 180 4 45481 b1a9 lib/libm.so + 44969 180 4 45153 b061 lib/libm.so
* - sync with trunk @r24492Bernhard Reutner-Fischer2008-12-221-16/+1
|
* Synch with trunk @ 24075.Carmelo Amoroso2008-11-171-2/+0
| | | | | Step 3 libm and related headers
* Merge from trunk. Going pretty good so far. Kind of. Okay, not really."Steven J. Hill"2006-02-251-0/+4
|
* Trim off whitespaceEric Andersen2005-03-061-7/+7
|
* Default to building C89 math stuff only. Cleanup some warnings.Eric Andersen2001-11-231-1/+2
| | | | -Erik
* Totally rework the math library, this time based on the MacOs XEric Andersen2001-11-221-0/+66
math library (which is itself based on the math lib from FreeBSD). -Erik