| Commit message (Expand) | Author | Age | Files | Lines |
* | Wrap the remaining math functions in libc: __fpclassify*(), __flt_rounds(), |  guenther | 2015-10-27 | 3 | -4/+7 |
* | Merge the sigaction() and sigprocmask() overloads/wrappers from libpthread |  guenther | 2015-10-23 | 2 | -4/+6 |
* | Need SYS.h for END_STRONG() |  guenther | 2015-09-13 | 4 | -4/+4 |
* | Add hidden _libc_ aliases and symbol sizes |  guenther | 2015-09-13 | 4 | -0/+4 |
* | Wrap <stdlib.h> so that calls go direct and the symbols not in the |  guenther | 2015-09-13 | 2 | -3/+2 |
* | Do provide hidden _libc_* aliases for sig{block,setmask} and use them in |  guenther | 2015-09-13 | 2 | -10/+10 |
* | Adds hidden _libc_FOO aliases for the system call stubs. |  guenther | 2015-09-05 | 11 | -30/+56 |
* | Add framework for resolving (pun intended) libc namespace issues, using |  guenther | 2015-08-31 | 14 | -27/+63 |
* | Hide many (194!) symbols that nothing should be using. |  guenther | 2015-08-26 | 5 | -64/+9 |
* | Explicitly list the symbols permitted to be exported by libc. |  guenther | 2015-08-22 | 1 | -0/+10 |
* | Make index/rindex weak aliases of strchr/strrchr since they are not |  millert | 2015-05-15 | 2 | -4/+4 |
* | Use STRONG_ALIAS instead of ALTENTRY. |  kettenis | 2015-05-14 | 2 | -4/+6 |
* | Eliminate the last uses of *fork's second syscall return register; the pid |  guenther | 2015-04-21 | 1 | -3/+3 |
* | Make pthread_atfork() track the DSO that called it like atexit() does, |  guenther | 2015-04-07 | 2 | -3/+30 |
* | Simplify fork/vfork logic: the kernel has handled returning zero in the child |  guenther | 2015-03-31 | 2 | -15/+3 |
* | remove code for ancient gcc. |  daniel | 2015-01-04 | 1 | -6/+1 |
* | we do not need the complexity of an assembly swab function here. |  tedu | 2014-12-11 | 2 | -69/+2 |
* | Noone cares what castle the princess is in |  deraadt | 2014-12-02 | 3 | -5/+3 |
* | sync bcopy/memmove/memcpy implementation with the kernel. ok deraadt |  tedu | 2014-12-02 | 3 | -161/+46 |
* | restructure libc/string + libc/arch/*/string coperation regarding |  deraadt | 2014-11-30 | 8 | -91/+207 |
* | let this compile with clang; no binary change with gcc. |  daniel | 2014-11-14 | 1 | -2/+2 |
* | Nuke the machinery to sync libkern with libc, it's not been used in the |  miod | 2014-06-09 | 1 | -5/+1 |
* | Apply "unifdef -D__STDC__" to libc/arch/*/SYS.h |  matthew | 2014-06-04 | 1 | -14/+1 |
* | add proto for amd64 case; unify otherwise |  deraadt | 2013-11-12 | 1 | -1/+1 |
* | Make sure the stack is 16-byte aligned otherwise the use of certain SSE |  kettenis | 2012-12-22 | 1 | -1/+4 |
* | remove lint leftovers; ok guenther@ |  okan | 2012-09-04 | 2 | -5/+2 |
* | Convert cpp | as rules in bsd.lib.mk and lib/libc/sys/Makefile.inc to pure cc |  pascal | 2012-08-22 | 14 | -31/+31 |
* | __tfork() needs to set the stack address of the new thread in the kernel, |  guenther | 2012-06-21 | 1 | -24/+20 |
* | rely on the compiler giving us a built-in alloca. any new architecture |  deraadt | 2012-04-19 | 2 | -52/+2 |
* | alloca.c cannot be used |  deraadt | 2012-04-12 | 1 | -3/+1 |
* | remove rfork(); ok guenther miod |  deraadt | 2012-04-12 | 1 | -39/+0 |
* | Mark outermost frame such that backtraces in thread terminate at |  kettenis | 2012-04-11 | 1 | -2/+3 |
* | Move __tfork_thread() from rthreads (libpthread) to libc so that |  guenther | 2012-03-22 | 1 | -0/+122 |
* | Remove assembly version of strlen from i386 and amd64, where it's |  mikeb | 2012-01-17 | 3 | -26/+6 |
* | Revert (leaving the complex math part alone). Some stuff is depending |  martynas | 2011-07-08 | 3 | -3/+110 |
* | Move fabs(3), frexp(3), and modf(3) to libm--nothing has been using |  martynas | 2011-07-08 | 3 | -110/+3 |
* | Move __cerror to ___cerror with a weak alias so that rthreads can override it. |  guenther | 2011-04-04 | 2 | -5/+9 |
* | more rcsid/sccs cleanup |  deraadt | 2009-10-28 | 8 | -40/+0 |
* | fix rcs ids. ok sthen@ |  martynas | 2009-06-21 | 1 | -1/+1 |
* | remove from gen so that lint doesn't check gen if assembly versions |  martynas | 2009-04-21 | 1 | -2/+2 |
* | - ldexp implementation has issues. switch to the one from libm |  martynas | 2009-04-19 | 1 | -2/+2 |
* | 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 | 10 | -1/+222 |
* | - move isinf, isnan dups to gen, since most is ieee 754 |  martynas | 2008-07-24 | 4 | -99/+12 |
* | "boundries" -> "boundaries" in various comments. Started by Diego Casati. |  krw | 2007-05-25 | 2 | -4/+4 |
* | Properly terminate ENTRY with a semicolon, required for asm profiling. |  drahn | 2006-04-24 | 1 | -3/+3 |
* | if we pull in a .S file, we must fake out the lint with a .c file |  deraadt | 2005-11-29 | 1 | -1/+3 |
* | zap rcsid, tested there. okay deraadt@ |  espie | 2005-08-07 | 52 | -259/+51 |