Age | Commit message (Expand) | Author |
2016-01-19 | remove a nop assignment that has been #if 0'd since 1996 | mmcc |
2016-01-04 | Bugfix: When errno happens to be EILSEQ upon entry to fgetws(3), | Ingo Schwarze |
2016-01-04 | Fix lots of bugs. | Ingo Schwarze |
2015-12-28 | Remove NULL-checks before free() and a few related dead assignments. | mmcc |
2015-12-24 | Both our manual and POSIX ask us to set the error indicator when an | Ingo Schwarze |
2015-11-04 | replace setbuf with setvbuf, from Frederic Nowak | Ted Unangst |
2015-10-25 | Hide __atexit and __atexit_register_cleanup() | Philip Guenther |
2015-10-13 | Sync printf family return value with ISO C which specifies that | Todd C. Miller |
2015-10-07 | Be explicit that the user is responsible for freeing the line buffer | Todd C. Miller |
2015-10-04 | wrap _fwalk() so internal calls are direct (at least until we stop | Philip Guenther |
2015-10-01 | Eliminate the last of the LINTEDn and PRINTFLIKEn comments. In one | Philip Guenther |
2015-09-29 | Delete the final, inscrutable NOSTRICT and VARARGS lint comments | Philip Guenther |
2015-09-14 | in the SYNOPSIS, make void function arguments explicit | Ingo Schwarze |
2015-09-14 | Wrap the remaining __*dtoa() functions so that internal calls go direct | Philip Guenther |
2015-09-13 | Wrap <stdlib.h> so that calls go direct and the symbols not in the | Philip Guenther |
2015-09-12 | Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct | Philip Guenther |
2015-09-12 | Wrap <unistd.h> so that internal calls go direct and they're all weak symbols | Philip Guenther |
2015-09-10 | another missing Mdocdate | Ingo Schwarze |
2015-08-31 | Add framework for resolving (pun intended) libc namespace issues, using | Philip Guenther |
2015-08-27 | Use static and __{BEGIN,ENV}_HIDDEN_DECLS to hide a bunch of internal | Philip Guenther |
2015-08-20 | All these files include <stdlib.h>, so do not need to cast | Theo de Raadt |
2015-06-03 | snprintf(3) is available on all modern systems and asprintf(3) is | Todd C. Miller |
2015-03-23 | fix memory leaks in tempnam(3) error paths | Jonathan Gray |
2015-03-13 | remove the first comma from constructs like ", and," and ", or,": you can use | Jason McIntyre |
2015-03-12 | Fix typo: nemb -> nmemb | Lawrence Teo |
2015-03-05 | Revert; committed by accident without approval from deraadt@ at release | Lawrence Teo |
2015-03-05 | Fix typo, from Ryan May. | Lawrence Teo |
2015-02-28 | Reduce usage of predefined strings in manpages. | Anthony J. Bentley |
2015-02-06 | SIZE_MAX is standard, we should be using it in preference to the | Todd C. Miller |
2015-02-05 | Include stdint.h, not limits.h to get SIZE_MAX. OK guenther@ | Todd C. Miller |
2015-01-29 | Use .Rv where appropriate, and move it to RETURN VALUES; | Ingo Schwarze |
2015-01-16 | Move to the <limits.h> universe. | Theo de Raadt |
2015-01-15 | typo; from Kaspars at Bankovskis dot net | Ingo Schwarze |
2015-01-13 | remove .Tn from stdio manuals; Kaspars Bankovskis found one of these | Ingo Schwarze |
2015-01-13 | Remove unnecessary calls to __atexit_register_cleanup(), calling __sinit() | Philip Guenther |
2015-01-12 | Add fgetwln(3) from FreeBSD and bump libc minor revision. | Todd C. Miller |
2015-01-05 | Remove #ifdef notdef bits--we are not going to change the fgetln() | Todd C. Miller |
2014-12-21 | Show the sign for NaN as per POSIX; from Elliott Hughes. | Daniel Dickman |
2014-12-08 | don't do silly (and slow) one byte reads in unbuffered mode. | Ted Unangst |
2014-11-26 | garbage collect .Tn | Ingo Schwarze |
2014-11-25 | zap trailing whitespace; | Jason McIntyre |
2014-11-25 | C99 says setvbuf() returns non-zero, not EOF. Also, POSIX documents | Todd C. Miller |
2014-11-25 | Move guts of setbuf.3 into setvbuf.3 to make it clear which one | Todd C. Miller |
2014-11-19 | abort() doesn't call atexit handlers any more | Philip Guenther |
2014-11-15 | Reduce instances of `` '' in manuals. | Anthony J. Bentley |
2014-11-04 | explicitly clarify that reading also stops after size-1 bytes | Ted Unangst |
2014-10-31 | Use "const char tempchars[]" instead of "const char *tempchars". | Todd C. Miller |
2014-10-26 | The open flags param to mkostemps() should be "flags" not "oflags" | Todd C. Miller |
2014-10-16 | Fix bounds check for newlen without relying on unspecified behavior. | Todd C. Miller |
2014-10-11 | use reallocarray, and avoid this << 1 ugliness. | Theo de Raadt |