summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio (follow)
Commit message (Expand)AuthorAgeFilesLines
* When encoding fails in fputwc(3), set the error indicator as requiredschwarze2016-01-261-2/+2
* remove a nop assignment that has been #if 0'd since 1996mmcc2016-01-191-5/+1
* Bugfix: When errno happens to be EILSEQ upon entry to fgetws(3),schwarze2016-01-041-3/+3
* Fix lots of bugs.schwarze2016-01-041-18/+28
* Remove NULL-checks before free() and a few related dead assignments.mmcc2015-12-284-32/+15
* Both our manual and POSIX ask us to set the error indicator when anschwarze2015-12-241-2/+2
* replace setbuf with setvbuf, from Frederic Nowaktedu2015-11-043-9/+9
* Hide __atexit and __atexit_register_cleanup()guenther2015-10-251-3/+1
* Sync printf family return value with ISO C which specifies thatmillert2015-10-131-3/+3
* Be explicit that the user is responsible for freeing the line buffermillert2015-10-071-4/+10
* wrap _fwalk() so internal calls are direct (at least until we stopguenther2015-10-042-2/+4
* Eliminate the last of the LINTEDn and PRINTFLIKEn comments. In oneguenther2015-10-012-5/+3
* Delete the final, inscrutable NOSTRICT and VARARGS lint commentsguenther2015-09-292-4/+2
* in the SYNOPSIS, make void function arguments explicitschwarze2015-09-141-3/+3
* Wrap the remaining __*dtoa() functions so that internal calls go directguenther2015-09-141-5/+1
* Wrap <stdlib.h> so that calls go direct and the symbols not in theguenther2015-09-131-2/+2
* Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go directguenther2015-09-121-2/+1
* Wrap <unistd.h> so that internal calls go direct and they're all weak symbolsguenther2015-09-121-1/+3
* another missing Mdocdateschwarze2015-09-101-2/+2
* Add framework for resolving (pun intended) libc namespace issues, usingguenther2015-08-3185-100/+174
* Use static and __{BEGIN,ENV}_HIDDEN_DECLS to hide a bunch of internalguenther2015-08-274-8/+16
* All these files include <stdlib.h>, so do not need to castderaadt2015-08-203-6/+6
* snprintf(3) is available on all modern systems and asprintf(3) ismillert2015-06-031-6/+4
* fix memory leaks in tempnam(3) error pathsjsg2015-03-231-5/+6
* remove the first comma from constructs like ", and," and ", or,": you can usejmc2015-03-131-3/+3
* Fix typo: nemb -> nmemblteo2015-03-121-3/+3
* Revert; committed by accident without approval from deraadt@ at releaselteo2015-03-051-2/+2
* Fix typo, from Ryan May.lteo2015-03-051-3/+3
* Reduce usage of predefined strings in manpages.bentley2015-02-282-7/+7
* SIZE_MAX is standard, we should be using it in preference to themillert2015-02-061-2/+3
* Include stdint.h, not limits.h to get SIZE_MAX. OK guenther@millert2015-02-052-4/+4
* Use .Rv where appropriate, and move it to RETURN VALUES;schwarze2015-01-291-8/+3
* Move to the <limits.h> universe.deraadt2015-01-163-10/+10
* typo; from Kaspars at Bankovskis dot netschwarze2015-01-151-4/+4
* remove .Tn from stdio manuals; Kaspars Bankovskis found one of theseschwarze2015-01-137-50/+28
* Remove unnecessary calls to __atexit_register_cleanup(), calling __sinit()guenther2015-01-132-4/+9
* Add fgetwln(3) from FreeBSD and bump libc minor revision.millert2015-01-123-8/+206
* Remove #ifdef notdef bits--we are not going to change the fgetln()millert2015-01-051-13/+3
* Show the sign for NaN as per POSIX; from Elliott Hughes.daniel2014-12-212-8/+6
* don't do silly (and slow) one byte reads in unbuffered mode.tedu2014-12-081-1/+16
* garbage collect .Tnschwarze2014-11-261-8/+4
* zap trailing whitespace;jmc2014-11-251-2/+2
* C99 says setvbuf() returns non-zero, not EOF. Also, POSIX documentsmillert2014-11-252-10/+37
* Move guts of setbuf.3 into setvbuf.3 to make it clear which onemillert2014-11-253-117/+191
* abort() doesn't call atexit handlers any moreguenther2014-11-191-2/+2
* Reduce instances of `` '' in manuals.bentley2014-11-152-7/+12
* explicitly clarify that reading also stops after size-1 bytestedu2014-11-041-3/+5
* Use "const char tempchars[]" instead of "const char *tempchars".millert2014-10-311-2/+2
* The open flags param to mkostemps() should be "flags" not "oflags"millert2014-10-261-3/+3
* Fix bounds check for newlen without relying on unspecified behavior.millert2014-10-161-4/+3