summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio (follow)
Commit message (Expand)AuthorAgeFilesLines
* For the snprintf range check demo, add a (size_t) cast in the right placederaadt2021-04-011-3/+3
* article fixes; from eddie yousephjmc2021-02-021-3/+3
* The printf format string component %n is a nearly turning-complete gadget.deraadt2020-10-272-4/+83
* Spell out n as en for consistency with other parts of the page.tb2020-09-131-3/+3
* %lln is percent ell ell n (not dee).claudio2020-09-131-4/+4
* Fix append mode so it always writes to the end and expand regress.millert2020-08-171-2/+7
* Fix handling of "w+" mode, we were only truncating for "w".millert2020-08-141-2/+2
* adjust %n description to vaguely say "pointer", becuase the followingderaadt2020-07-101-4/+6
* As suggested by deraadt@, rewrite most of the printf(3) manual pageschwarze2020-07-101-453/+586
* Minor tweaks in the description of %g:schwarze2020-07-061-4/+8
* fwide() does not unlock if error was occurred.asou2019-12-031-2/+4
* more Version 1 AT&T UNIX history:schwarze2019-09-071-3/+7
* .Dt same as filenamederaadt2019-08-301-3/+3
* mop up stdarg rename; ok deraadtjmc2019-08-304-12/+12
* two more syscall == -1 checksderaadt2019-06-291-3/+3
* Specify that {v,}asprintf(3) returns precisely -1 on failure,schwarze2019-06-281-7/+11
* When system calls indicate an error they return -1, not some arbitraryderaadt2019-06-285-11/+11
* Simplify the description of [v]snprintf(3), move the descriptionschwarze2019-06-271-19/+18
* an -> a;jmc2019-06-261-2/+2
* The POSIX-compatible way of checking for {v,}{f,s,sn,d}printf(3)deraadt2019-06-261-4/+5
* More consistently put remarks about the less useful LC_* categoties,schwarze2019-05-161-3/+13
* Fix a comparison in open_memstream not to confuse when a negativeyasuoka2019-05-021-3/+3
* Undo changes to tmpfile.c r1.5.martijn2019-04-262-26/+5
* in vdprintf(), no need to use the file locking mecanism when usingsemarie2019-03-031-2/+2
* I am retiring my old email address; replace it with my OpenBSD one.millert2019-01-253-6/+6
* For all functions known to be infected by LC_NUMERIC, add shortschwarze2019-01-164-29/+30
* Similar CAVEATS regarding LC_NUMERIC as was just committedschwarze2019-01-111-6/+19
* Clarify that OpenBSD ignores the dangerous category LC_NUMERIC,schwarze2019-01-111-16/+30
* Restore the optimization for unbuffered I/O. The buffer needs tomillert2018-12-161-1/+31
* Back out rev 1.17 for now, it causes issues with python when buildingmillert2018-12-161-31/+1
* Revisit the optimization for unbuffered I/O. We can use the buffermillert2018-12-141-1/+31
* Back out the optimization in rev 1.13, it does not update flags onmillert2018-12-141-16/+1
* some grammar fixes; from dholland@netbsd, -r1.68jmc2018-01-021-6/+6
* Fix the return value of fwscanf(3) when encountering an early matchingkevlo2017-12-081-2/+2
* Consistently .Xr the corresponding wide char functions from char- andschwarze2017-12-0111-26/+37
* add missing argument name; from <kshe59 at zoho dot eu>; OK jmc@;schwarze2017-12-011-8/+32
* GNU ld has prefixed the contents of .gnu.warning.SYMBOL sectionstb2017-11-285-10/+10
* Use a simple forward search to find '%' in the format string instead oftb2017-11-211-35/+12
* Add error checking to some calls to __find_arguments(). Matches similartb2017-11-161-6/+16
* add missing HISTORY; based on CVS logs and release announcementsschwarze2017-10-171-2/+7
* fmt0 is a wchar_t *, so use %ls to reportderaadt2017-08-151-3/+3
* Favor err() over perror() in example.anton2017-07-221-3/+3
* 1. mild deprecation noticeschwarze2017-07-041-3/+11
* Add dprintf() and vdprintf() RETURN VALUES. OK deraadt@millert2017-06-121-2/+4
* Use recallocarray in getdelim/getline to clear memory on buffer resizes,brynet2017-04-131-2/+2
* Use recallocarray() to avoid leaving detritus in memory when resizingmillert2017-03-171-2/+3
* Use recallocarray() to avoid leaving detritus in memory when resizingderaadt2017-03-174-8/+12
* Only reallocate the buffer to fit for medium-size allocations wheremillert2017-03-162-18/+28
* When reallocating the buffer for asprintf(), just round up to themillert2017-03-161-6/+5
* Use a macro for the initial length of the buffer instead of 127; OK deraadt@millert2017-03-142-6/+10