| Commit message (Expand) | Author | Age | Files | Lines |
* | Add support for timeconting in userland. |  pirofti | 2020-07-06 | 2 | -2/+23 |
* | Copy files from ../librthread in preparation for moving functionality |  guenther | 2017-08-15 | 1 | -0/+44 |
* | Switch from calling obsolete sig{block,setmask} to directly using the |  guenther | 2016-09-22 | 3 | -76/+42 |
* | Wrap fpgetround() so internal calls to it (seen on arm, powerpc, and sh) |  guenther | 2016-07-26 | 1 | -2/+3 |
* | Stop supporting longjmperror(); it's not used, not portable, and the checks |  guenther | 2016-05-23 | 3 | -15/+9 |
* | Wrap the remaining math functions in libc: __fpclassify*(), __flt_rounds(), |  guenther | 2015-10-27 | 1 | -1/+2 |
* | Do provide hidden _libc_* aliases for sig{block,setmask} and use them in |  guenther | 2015-09-13 | 2 | -10/+10 |
* | On second thought, do not use a tcnd instruction to test for divide-by-zero, |  miod | 2013-06-05 | 4 | -9/+17 |
* | ...also add __modsi3 and __umodsi3, and make these symbols weak by default. |  miod | 2013-06-05 | 5 | -4/+112 |
* | Add __divsi3 and __udivsi3 gcc-compatible routines. Not used by anything yet |  miod | 2013-06-05 | 3 | -6/+93 |
* | PIC-related code should follow the #ifdef __PIC__ line, not the #else line. |  miod | 2013-01-20 | 3 | -14/+14 |
* | Add END() directives to the various functions. |  miod | 2013-01-11 | 4 | -5/+42 |
* | Switch m88k ports to ELF. |  miod | 2013-01-05 | 11 | -218/+218 |
* | Adapt ieee.h, gdtoa and libc to the fact that we don't have 80-bit |  martynas | 2012-09-15 | 7 | -192/+1 |
* | Fix almost ten-years old bug in siglongjmp(), which would not restore a signal |  miod | 2012-08-12 | 3 | -87/+57 |
* | Do not use <machine/float.h>, that is an deformed BSD-ism. |  deraadt | 2012-06-25 | 1 | -2/+2 |
* | alloca.c cannot be used |  deraadt | 2012-04-12 | 1 | -3/+1 |
* | Revert (leaving the complex math part alone). Some stuff is depending |  martynas | 2011-07-08 | 2 | -3/+49 |
* | Move fabs(3), frexp(3), and modf(3) to libm--nothing has been using |  martynas | 2011-07-08 | 2 | -49/+3 |
* | remove from gen so that lint doesn't check gen if assembly versions |  martynas | 2009-04-21 | 1 | -3/+3 |
* | - ldexp implementation has issues. switch to the one from libm |  martynas | 2009-04-19 | 3 | -449/+3 |
* | these were not needed |  martynas | 2008-12-09 | 1 | -2/+1 |
* | ditto frexpl and ldexpl |  martynas | 2008-12-09 | 1 | -1/+2 |
* | - add long double signbit |  martynas | 2008-12-09 | 6 | -6/+38 |
* | - replace dtoa w/ David's gdtoa, version 2008-03-15 |  martynas | 2008-09-07 | 6 | -1/+160 |
* | - move isinf, isnan dups to gen, since most is ieee 754 |  martynas | 2008-07-24 | 4 | -97/+12 |
* | if we pull in a .S file, we must fake out the lint with a .c file |  deraadt | 2005-11-29 | 1 | -1/+2 |
* | zap rcsid. |  espie | 2005-08-07 | 16 | -80/+16 |
* | Replace broken frexp() with a working one from FreeBSD. There's |  millert | 2005-02-01 | 2 | -76/+2 |
* | Use less stack space for temporary storage and C code invocation, after |  miod | 2004-07-28 | 3 | -30/+24 |
* | Do not overallocate stack space, and keep the stack on a 16-byte boundary. |  miod | 2004-07-22 | 1 | -7/+7 |
* | In the never-ending story of *setjmp bugs, fix a typo preventing |  miod | 2003-12-24 | 1 | -5/+5 |
* | In setjmp() and sigsetjmp(), be sure to return with r14 and r15 unchanged, as |  miod | 2003-08-06 | 2 | -4/+11 |
* | Fix the *longjmp() behaviour - it is legal to reuse a jmp_buf several times. |  miod | 2003-08-01 | 3 | -36/+15 |
* | Remove the advertising clause in the UCB license which Berkeley |  millert | 2003-06-02 | 4 | -28/+12 |
* | Add Doug Gwyn's portable alloca() for platforms w/o an assembler |  millert | 2003-05-02 | 1 | -1/+2 |
* | Get static rcsid correctly, better style for .S files, trim whitespace. |  miod | 2003-01-07 | 12 | -24/+66 |
* | Properly align __infinity - m88k is very strict wrt double alignment. |  miod | 2003-01-07 | 1 | -6/+7 |
* | Get the rounding modes table correct, eventually. |  miod | 2003-01-07 | 1 | -4/+10 |
* | Fix *longjmp() return values. |  miod | 2003-01-04 | 3 | -59/+57 |
* | Typos |  miod | 2003-01-02 | 3 | -13/+13 |
* | Fix license and conformance with man page. |  smurph | 2002-09-18 | 4 | -53/+369 |
* | We need to keep K&R compat macros for some ports where the assemnbler is |  millert | 2002-02-19 | 1 | -4/+12 |
* | We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft. |  millert | 2002-02-19 | 1 | -12/+4 |
* | Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. |  millert | 2002-02-16 | 1 | -65/+65 |
* | add isnan.c |  miod | 2001-09-21 | 1 | -1/+2 |
* | Use the LBL isnan() and isinf() on all platforms with ieee floating point. |  millert | 2001-09-10 | 2 | -31/+19 |
* | Use the LBL frexp() on all platforms with ieee floating point. |  millert | 2001-09-10 | 1 | -4/+3 |
* | $OpenBSD$ |  todd | 2000-03-01 | 6 | -7/+11 |
* | correted sigsetjmp, setjump. Fixed MACHINE_ARCH vs. MACHINE stuff. |  smurph | 1998-12-15 | 18 | -0/+1017 |