summaryrefslogtreecommitdiffstats
path: root/libm/s_scalbn.c
Commit message (Collapse)AuthorAgeFilesLines
* libm: unbreak scalbn for 64-bit processorsRoman I Khimov2010-06-101-1/+1
| | | | | | | Obvious typo. Signed-off-by: Roman I Khimov <khimov@altell.ru> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* Add a few missing includesRon2009-07-051-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>
* 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
* libm/*: mass removal of:Denis Vlasenko2008-12-221-16/+1
| | | | | | | | | 1. static char rcsid[] = "$NetBSD: ..." 2. /* @(#)s_scalbn.c 5.1 93/09/24 */ 3. #ifdef __STDC__ No code changes (verified with objdump)
* - move libm_hidden_proto to the corresponding headers. Remove from callsites.Bernhard Reutner-Fischer2008-09-261-2/+0
| | | | Note that gamma_r is not provided by glibc, perhaps add a SUN specific knob later
* All math related relocs gonePeter S. Mazinger2006-01-171-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