summaryrefslogtreecommitdiff
path: root/src/stdio
AgeCommit message (Expand)AuthorLines
2015-06-13remove cancellation points in stdioRich Felker-24/+3
2015-06-13fix idiom for setting stdio stream orientation to wideRich Felker-6/+6
2015-06-13add printing of null %s arguments as "(null)" in wide printfRich Felker-0/+1
2015-06-13add %m support to wide printfRich Felker-0/+2
2015-06-06remove another invalid skip of locking in ungetwcRich Felker-3/+1
2015-06-06remove invalid skip of locking in ungetwcRich Felker-6/+3
2015-05-29fix failure of ungetc and ungetwc to work on files in eof statusRich Felker-10/+11
2015-04-04fix getdelim to set the error indicator on all failuresSzabolcs Nagy-2/+5
2015-02-23fix possible isatty false positives and unwanted device state changesRich Felker-6/+4
2015-02-13overhaul aio implementation for correctnessRich Felker-1/+8
2014-12-18don't suppress sign output for NANs in printfRich Felker-1/+1
2014-12-17correctly handle write errors encountered by printf-family functionsRich Felker-2/+12
2014-11-15fix behavior of printf with alt-form octal, zero precision, zero valueRich Felker-1/+1
2014-09-19fix linked list corruption in flockfile listsRich Felker-0/+1
2014-09-04fix multiple stdio functions' behavior on zero-length operationsRich Felker-9/+7
2014-09-04suppress null termination when fgets reads EOF with no dataRich Felker-1/+1
2014-08-23fix false ownership of stdio FILEs due to tid reuseRich Felker-2/+36
2014-07-16work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1Rich Felker-5/+5
2014-07-16simplify __stdio_exit static linking logicRich Felker-11/+8
2014-07-02fix failure of wide printf/scanf functions to set wide orientationRich Felker-0/+3
2014-07-01fix incorrect return value for fwide functionRich Felker-1/+2
2014-06-10replace all remaining internal uses of pthread_self with __pthread_selfRich Felker-1/+1
2014-06-06add O_CLOEXEC fallback for open and related functionsRich Felker-0/+3
2014-06-06fix fd leak in tmpfile when the fdopen operation failsRich Felker-1/+2
2014-06-04simplify vasprintf implementationRich Felker-14/+1
2014-05-30use cleaner code for handling float rounding in vfprintfSzabolcs Nagy-3/+1
2014-05-29support linux kernel apis (new archs) with old syscalls removedRich Felker-2/+31
2014-05-27fix missing declaration of strcpy in implementation of tmpnamRich Felker-0/+1
2014-05-27overhaul tmpfile, tmpnam, and tempnam functionsRich Felker-55/+48
2014-05-24support kernels with no SYS_open syscall, only SYS_openatRich Felker-3/+3
2014-04-07fix printf rounding with %g for some corner case midpointsRich Felker-1/+1
2014-04-07fix failure of printf %g to strip trailing zeros in some casesRich Felker-1/+1
2014-04-07fix carry into uninitialized slots during printf floating point roundingRich Felker-1/+1
2014-03-24always initialize thread pointer at program startRich Felker-14/+6
2014-03-09fix incorrect rounding in printf floating point corner casesRich Felker-2/+2
2014-03-09fix buffer overflow in printf formatting of denormals with low bit setRich Felker-1/+2
2014-02-07in fdopen, avoid setting O_APPEND flag if it's already setRich Felker-1/+2
2014-02-07fix ftello result for append streams with unflushed outputRich Felker-1/+4
2014-01-08add __isoc99_vfscanf weak alias to vfscanfSzabolcs Nagy-0/+2
2013-12-12include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy-9/+3
2013-10-07minor vfprintf and vfwprintf changes to please static code analyzersSzabolcs Nagy-6/+11
2013-10-04removed unused variable in vfwprintfRich Felker-2/+1
2013-09-01fix special-case breakage in popen due to reversed argument orderRich Felker-1/+1
2013-08-31fix invalid %m format crash in wide scanf variantsRich Felker-0/+2
2013-08-31avoid crash in scanf when invalid %m format is encounteredRich Felker-0/+2
2013-08-02protect against long double type mismatches (mainly powerpc for now)Rich Felker-0/+7
2013-07-20fix uninitialized/stale use of alloc (%m modifier) flag in scanfRich Felker-0/+4
2013-06-22fix scanf %c conversion wrongly storing a terminating null byteRich Felker-4/+8
2013-06-06implement 'm' modifier for wide scanf variantsRich Felker-7/+40
2013-06-05implement the 'm' (malloc) modifier for scanfRich Felker-22/+48