summaryrefslogtreecommitdiff
path: root/lib/libc
AgeCommit message (Expand)Author
2014-11-14_NSIG is the number of valid signals including signal 0, so it's not a validJonathan Matthew
2014-11-14let this compile with clang; no binary change with gcc.Daniel Dickman
2014-11-14Add sched_yield(2) manpagePhilip Guenther
2014-11-11Merge from NetBSD from 1999-03-25:"Philip Guenther
2014-11-09Correct constness of str*unvis()'s second (source) argumentPhilip Guenther
2014-11-05missing pfd = newp, diagnosed by deraadt@Stuart Henderson
2014-11-05edns0 is not currently supported: confirmed by sthen and ericJason McIntyre
2014-11-05zap double word;Jason McIntyre
2014-11-05Convert EXAMPLES to IDIOMS and make it a simple select -> pollTodd C. Miller
2014-11-04explicitly clarify that reading also stops after size-1 bytesTed Unangst
2014-11-04Fix memory leak on reallocarray() failure introduced by conversionTodd C. Miller
2014-11-03POLLERR is only valid in revents so it is not a bug that it isTodd C. Miller
2014-11-02Fix a NULL deref when getting an actual result for an invalid hostnameEric Faurot
2014-10-31Use "const char tempchars[]" instead of "const char *tempchars".Todd C. Miller
2014-10-30clean up verbiage around the calculations; ok ingo jmc ottoTheo de Raadt
2014-10-30Don't mention old systems where realloc(NULL, n) didn't work as weTodd C. Miller
2014-10-26The open flags param to mkostemps() should be "flags" not "oflags"Todd C. Miller
2014-10-26mknod(2) now supports creating FIFOs too. Fix description of device filePhilip Guenther
2014-10-25Remove unnecessary netinet/in_systm.h include.Lawrence Teo
2014-10-23Save space in man page: err() -> errc() and combine vars.Doug Hogan
2014-10-22We prefer to use call reallocarray() with nmemb first and size second.Todd C. Miller
2014-10-22Use reallocarray() instead of calloc() (originally was realloc).Todd C. Miller
2014-10-22Avoid writing in second person in malloc.3Doug Hogan
2014-10-20List extensions in the STANDARDS section, replacing some text below CAVEATS.Ingo Schwarze
2014-10-19make RETURN VALUES more conciseIngo Schwarze
2014-10-19Revamp malloc.3 by reordering the sections and rewriting parts.Doug Hogan
2014-10-19Revert last commit due to changed semantics found by make release.Doug Hogan
2014-10-18Better POSIX compliance in realpath(3).Doug Hogan
2014-10-18reallocarray() -- a little tricky to reviewTheo de Raadt
2014-10-17trivial sync of the first sentence of the DESCRIPTIONIngo Schwarze
2014-10-16Fix bounds check for newlen without relying on unspecified behavior.Todd C. Miller
2014-10-16Remove references to unimplemented CLOCK_VIRTUAL. It is non-standardTodd C. Miller
2014-10-13remove unused variableCharles Longeau
2014-10-11Since deraadt@ remembers seeing strdup() on one particular 4.2BSD machine,Ingo Schwarze
2014-10-11Userland reallocarray() audit.Doug Hogan
2014-10-11Userland reallocarray() audit.Doug Hogan
2014-10-11obvious reallocarray() useTheo de Raadt
2014-10-11use reallocarray, and avoid this << 1 ugliness.Theo de Raadt
2014-10-11Userland reallocarray() audit.Doug Hogan
2014-10-11Add UTC support to %Z conversion in strptime().Doug Hogan
2014-10-10replace select with equiv poll usage.David Gwynne
2014-10-10Remove unnecessary includes now that we are no longer using select()Todd C. Miller
2014-10-09replace the use of select() for a short sleep with nanosleep().David Gwynne
2014-10-09use reallocarray(NULL, a, b) instead of malloc(a, b), which gives usTheo de Raadt
2014-10-08obvious realloc -> reallocarray conversionTheo de Raadt
2014-10-08obvious reallocarray()Theo de Raadt
2014-10-08using reallocarray() gives us multiplicative integer overflow checkingTheo de Raadt
2014-10-08obvious conversion of realloc() to reallocarray(). Luckily this isTheo de Raadt
2014-10-08obvious reallocarray(); ok dougTheo de Raadt
2014-10-08obvious malloc -> reallocarray, for mult int oflowTheo de Raadt