freebsd-dev/lib/libc/arm/gen
David Schultz 00646ca204 Replace the ldexp() implementation in libc with a renamed copy of the
scalbn() implementation from libm.  (The two functions are defined to
be identical, but ldexp() lives in libc for backwards compatibility.)
The old ldexp() implementation...
  - was more complicated than this one
  - set errno instead of raising FP exceptions
  - got some corner cases wrong
    (e.g. ldexp(1.0, 2000) in round-to-zero mode)

The new implementation lives in libc/gen instead of
libc/$MACHINE_ARCH/gen, since we don't need N copies of a
machine-independent file.  The amd64 and i386 platforms
retain their fast and correct MD implementations and
override this one.
2005-01-22 06:03:40 +00:00
..
_ctx_start.S Fix signalcontext and makecontext. 2004-11-05 23:53:02 +00:00
_set_tp.c Add a dummy set_tp(). 2004-09-23 23:12:57 +00:00
_setjmp.S Use the RET macro. 2004-11-09 16:49:14 +00:00
alloca.S Use the RET macro. 2004-11-09 16:49:14 +00:00
divsi3.S Use the RET macro. 2004-11-09 16:49:14 +00:00
fabs.c
infinity.c
makecontext.c Fix signalcontext and makecontext. 2004-11-05 23:53:02 +00:00
Makefile.inc Add a dummy set_tp(). 2004-09-23 23:12:57 +00:00
modf.c
setjmp.S Use the RET macro. 2004-11-09 16:49:14 +00:00
signalcontext.c Fix signalcontext and makecontext. 2004-11-05 23:53:02 +00:00
sigsetjmp.S Add a week alias __siglongjmp => siglongjmp. 2004-11-09 16:44:57 +00:00