about summary refs log tree commit diff
path: root/src/stdio
Commit message (Expand)AuthorAgeFilesLines
...
* memstreams: fix incorrect handling of file pos > current sizeRich Felker2011-09-042-4/+4
* optimize seek function for memory streamsRich Felker2011-09-042-24/+6
* fix twos complement overflow bug in mem streams boundary checkRich Felker2011-09-042-2/+2
* implement fmemopenRich Felker2011-09-031-18/+66
* fix some length calculations in memory streamsRich Felker2011-09-032-3/+3
* implement open_wmemstreamRich Felker2011-09-031-0/+95
* implement open_memstreamRich Felker2011-09-031-0/+94
* fix crash in dns code with new stdio locking codeRich Felker2011-08-011-0/+1
* add proper fuxed-based locking for stdioRich Felker2011-07-3014-39/+44
* eliminate dependence of perror on printfRich Felker2011-07-301-10/+5
* fix logic error in freadRich Felker2011-07-161-6/+1
* printf: "if a precision is specified, the '0' flag shall be ignored."Rich Felker2011-07-041-1/+1
* zero precision with zero value should not inhibit prefix/width printingRich Felker2011-07-041-1/+4
* printf("%#x",0) should print 0 not 0x0Rich Felker2011-07-041-1/+1
* fix logic in __fwritingRich Felker2011-06-301-1/+1
* add and consolidate nasty stdio_ext junkRich Felker2011-06-303-17/+57
* implement the nonstandard GNU function fpurgeRich Felker2011-06-301-0/+11
* avoid 64bit warnings when using pointers as entropy for temp namesRich Felker2011-06-132-2/+4
* fix the last known rounding bug in floating point printingRich Felker2011-05-111-3/+4
* reduce some ridiculously large spin countsRich Felker2011-05-061-1/+1
* fix fclose return status logic, againRich Felker2011-05-021-1/+2
* fix undefined call order in fclose, possible lost output depending on compilerRich Felker2011-05-011-1/+1
* minor optimization in puts: use inline putc_unlocked macro for newlineRich Felker2011-05-011-1/+1
* fix 2 eof-related bugs in scanfRich Felker2011-04-251-3/+4
* clean up handling of thread/nothread mode, lockingRich Felker2011-04-172-5/+1
* debloat: use __syscall instead of syscall where possibleRich Felker2011-04-174-5/+5
* avoid setting errno when checking for ttyRich Felker2011-04-152-2/+2
* make tmpfile slightly more efficient (use unlink syscall instead of remove)Rich Felker2011-04-141-1/+1
* fix printf("%.9g", 1.1) and similar not dropping trailing zerosRich Felker2011-04-121-1/+3
* fix fputwc return valueRich Felker2011-04-111-1/+1
* work around a nasty bug in linux readv syscallRich Felker2011-04-091-3/+4
* add more legacy functions: setlinebuf and setbufferRich Felker2011-04-053-1/+15
* fix overflow in printf %N$ argument handlingRich Felker2011-04-051-2/+2
* fix various floating point rounding and formatting errors in *printfRich Felker2011-04-051-17/+25
* simplify vdprintf implementation greatly based on recent vfprintf changesRich Felker2011-04-041-5/+2
* use a local temp buffer for unbuffered streams in vfprintfRich Felker2011-04-042-0/+14
* don't disable seeking after first seek failureRich Felker2011-04-021-8/+0
* apparently fseek should not set the error flag on failed seekRich Felker2011-04-021-4/+1
* fix tempnam name generation, and a small bug in tmpnam on retry limitRich Felker2011-03-292-21/+20
* make tmpfile fail after exceeding max tries.Rich Felker2011-03-291-2/+6
* fix tmpnam to generate better names, not depend on non-ISO-C symbolsRich Felker2011-03-291-25/+17
* fix messed-up errno if remove fails for a non-EISDIR reasonRich Felker2011-03-291-2/+2
* learned something new - remove is supposed to support directories on POSIXRich Felker2011-03-291-1/+3
* revert some more spin optimizations that turned out to be pessimizationsRich Felker2011-03-281-1/+1
* fix getc - the classic error of trying to store EOF+0-255 in a char type..Rich Felker2011-03-281-3/+3
* major stdio overhaul, using readv/writev, plus other changesRich Felker2011-03-2835-268/+235
* fix all implicit conversion between signed/unsigned pointersRich Felker2011-03-256-8/+8
* simplify and optimize FILE lock handlingRich Felker2011-03-244-11/+12
* fix non-atomicity of putsRich Felker2011-03-241-1/+5
* global cleanup to use the new syscall interfaceRich Felker2011-03-2012-19/+19