about summary refs log tree commit diff
path: root/src/stdio
Commit message (Expand)AuthorAgeFilesLines
* fix assumption in fputs that fwrite returning 0 implies an errorRich Felker2016-02-161-1/+2
* fix return value for fread/fwrite when size argument is 0Rich Felker2016-02-102-0/+2
* fix failed write reporting by fwrite in line-buffered modeRich Felker2016-02-101-2/+2
* fix overly pessimistic realloc strategy in getdelimRich Felker2015-12-201-1/+1
* avoid updating caller's size when getdelim fails to reallocRich Felker2015-12-191-5/+6
* fix single-byte overflow of malloc'd buffer in getdelimRich Felker2015-10-241-1/+1
* fix open_[w]memstream behavior when no writes take placeRich Felker2015-10-082-4/+18
* fix fclose of permanent (stdin/out/err) streamsRich Felker2015-09-091-2/+3
* fix failure of tempnam to null-terminate resultRich Felker2015-08-091-0/+1
* refactor stdio open file list handling, move it out of global libc structRich Felker2015-06-169-36/+37
* byte-based C locale, phase 2: stdio and iconv (multibyte callers)Rich Felker2015-06-165-8/+33
* remove cancellation points in stdioRich Felker2015-06-133-24/+3
* fix idiom for setting stdio stream orientation to wideRich Felker2015-06-136-6/+6
* add printing of null %s arguments as "(null)" in wide printfRich Felker2015-06-131-0/+1
* add %m support to wide printfRich Felker2015-06-131-0/+2
* remove another invalid skip of locking in ungetwcRich Felker2015-06-061-3/+1
* remove invalid skip of locking in ungetwcRich Felker2015-06-061-6/+3
* fix failure of ungetc and ungetwc to work on files in eof statusRich Felker2015-05-295-10/+11
* fix getdelim to set the error indicator on all failuresSzabolcs Nagy2015-04-041-2/+5
* fix possible isatty false positives and unwanted device state changesRich Felker2015-02-232-6/+4
* overhaul aio implementation for correctnessRich Felker2015-02-131-1/+8
* don't suppress sign output for NANs in printfRich Felker2014-12-181-1/+1
* correctly handle write errors encountered by printf-family functionsRich Felker2014-12-172-2/+12
* fix behavior of printf with alt-form octal, zero precision, zero valueRich Felker2014-11-151-1/+1
* fix linked list corruption in flockfile listsRich Felker2014-09-191-0/+1
* fix multiple stdio functions' behavior on zero-length operationsRich Felker2014-09-044-9/+7
* suppress null termination when fgets reads EOF with no dataRich Felker2014-09-041-1/+1
* fix false ownership of stdio FILEs due to tid reuseRich Felker2014-08-233-2/+36
* work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1Rich Felker2014-07-165-5/+5
* simplify __stdio_exit static linking logicRich Felker2014-07-163-11/+8
* fix failure of wide printf/scanf functions to set wide orientationRich Felker2014-07-022-0/+3
* fix incorrect return value for fwide functionRich Felker2014-07-011-1/+2
* replace all remaining internal uses of pthread_self with __pthread_selfRich Felker2014-06-101-1/+1
* add O_CLOEXEC fallback for open and related functionsRich Felker2014-06-062-0/+3
* fix fd leak in tmpfile when the fdopen operation failsRich Felker2014-06-061-1/+2
* simplify vasprintf implementationRich Felker2014-06-041-14/+1
* use cleaner code for handling float rounding in vfprintfSzabolcs Nagy2014-05-301-3/+1
* support linux kernel apis (new archs) with old syscalls removedRich Felker2014-05-295-2/+31
* fix missing declaration of strcpy in implementation of tmpnamRich Felker2014-05-271-0/+1
* overhaul tmpfile, tmpnam, and tempnam functionsRich Felker2014-05-273-55/+48
* support kernels with no SYS_open syscall, only SYS_openatRich Felker2014-05-243-3/+3
* fix printf rounding with %g for some corner case midpointsRich Felker2014-04-071-1/+1
* fix failure of printf %g to strip trailing zeros in some casesRich Felker2014-04-071-1/+1
* fix carry into uninitialized slots during printf floating point roundingRich Felker2014-04-071-1/+1
* always initialize thread pointer at program startRich Felker2014-03-242-14/+6
* fix incorrect rounding in printf floating point corner casesRich Felker2014-03-091-2/+2
* fix buffer overflow in printf formatting of denormals with low bit setRich Felker2014-03-091-1/+2
* in fdopen, avoid setting O_APPEND flag if it's already setRich Felker2014-02-071-1/+2
* fix ftello result for append streams with unflushed outputRich Felker2014-02-072-1/+4
* add __isoc99_vfscanf weak alias to vfscanfSzabolcs Nagy2014-01-081-0/+2