Age | Commit message (Expand) | Author | Lines |
2011-05-01 | minor optimization in puts: use inline putc_unlocked macro for newline | Rich Felker | -1/+1 |
2011-04-25 | fix 2 eof-related bugs in scanf | Rich Felker | -3/+4 |
2011-04-17 | clean up handling of thread/nothread mode, locking | Rich Felker | -5/+1 |
2011-04-17 | debloat: use __syscall instead of syscall where possible | Rich Felker | -5/+5 |
2011-04-15 | avoid setting errno when checking for tty | Rich Felker | -2/+2 |
2011-04-14 | make tmpfile slightly more efficient (use unlink syscall instead of remove) | Rich Felker | -1/+1 |
2011-04-12 | fix printf("%.9g", 1.1) and similar not dropping trailing zeros | Rich Felker | -1/+3 |
2011-04-11 | fix fputwc return value | Rich Felker | -1/+1 |
2011-04-09 | work around a nasty bug in linux readv syscall | Rich Felker | -3/+4 |
2011-04-05 | add more legacy functions: setlinebuf and setbuffer | Rich Felker | -1/+15 |
2011-04-05 | fix overflow in printf %N$ argument handling | Rich Felker | -2/+2 |
2011-04-05 | fix various floating point rounding and formatting errors in *printf | Rich Felker | -17/+25 |
2011-04-04 | simplify vdprintf implementation greatly based on recent vfprintf changes | Rich Felker | -5/+2 |
2011-04-04 | use a local temp buffer for unbuffered streams in vfprintf | Rich Felker | -0/+14 |
2011-04-02 | don't disable seeking after first seek failure | Rich Felker | -8/+0 |
2011-04-02 | apparently fseek should not set the error flag on failed seek | Rich Felker | -4/+1 |
2011-03-29 | fix tempnam name generation, and a small bug in tmpnam on retry limit | Rich Felker | -21/+20 |
2011-03-29 | make tmpfile fail after exceeding max tries. | Rich Felker | -2/+6 |
2011-03-29 | fix tmpnam to generate better names, not depend on non-ISO-C symbols | Rich Felker | -25/+17 |
2011-03-29 | fix messed-up errno if remove fails for a non-EISDIR reason | Rich Felker | -2/+2 |
2011-03-29 | learned something new - remove is supposed to support directories on POSIX | Rich Felker | -1/+3 |
2011-03-28 | revert some more spin optimizations that turned out to be pessimizations | Rich Felker | -1/+1 |
2011-03-28 | fix getc - the classic error of trying to store EOF+0-255 in a char type.. | Rich Felker | -3/+3 |
2011-03-28 | major stdio overhaul, using readv/writev, plus other changes | Rich Felker | -268/+235 |
2011-03-25 | fix all implicit conversion between signed/unsigned pointers | Rich Felker | -8/+8 |
2011-03-24 | simplify and optimize FILE lock handling | Rich Felker | -11/+12 |
2011-03-24 | fix non-atomicity of puts | Rich Felker | -1/+5 |
2011-03-20 | global cleanup to use the new syscall interface | Rich Felker | -19/+19 |
2011-03-18 | implement [v]swprintf | Rich Felker | -0/+60 |
2011-03-17 | implement wprintf family of functions | Rich Felker | -0/+387 |
2011-03-16 | optimize file locking: avoid cache-polluting writes to global storage | Rich Felker | -3/+5 |
2011-03-14 | partially-written draft of fmemopen, still in #if 0 | Rich Felker | -3/+48 |
2011-03-12 | implement flockfile api, rework stdio locking | Rich Felker | -3/+54 |
2011-02-22 | rewind must clear the error indicator in addition to seeking | Rich Felker | -2/+5 |
2011-02-20 | avoid referencing address of extern function from vdprintf | Rich Felker | -1/+6 |
2011-02-20 | cleanup asprintf stuff | Rich Felker | -2/+2 |
2011-02-20 | fix %n specifier, again. this time it was storing the wrong value. | Rich Felker | -7/+7 |
2011-02-16 | fix printf %n specifier - missing breaks had it clobbering memory | Rich Felker | -7/+7 |
2011-02-14 | fix some pointer signedness issues (this was invalid C) | Rich Felker | -3/+3 |
2011-02-13 | cleaning up syscalls in preparation for x86_64 port | Rich Felker | -1/+7 |
2011-02-12 | initial check-in, version 0.5.0v0.5.0 | Rich Felker | -0/+2857 |