| Commit message (Expand) | Author | Age | Files | Lines |
* | memstreams: fix incorrect handling of file pos > current size | Rich Felker | 2011-09-04 | 2 | -4/+4 |
* | optimize seek function for memory streams | Rich Felker | 2011-09-04 | 2 | -24/+6 |
* | fix twos complement overflow bug in mem streams boundary check | Rich Felker | 2011-09-04 | 2 | -2/+2 |
* | implement fmemopen | Rich Felker | 2011-09-03 | 1 | -18/+66 |
* | fix some length calculations in memory streams | Rich Felker | 2011-09-03 | 2 | -3/+3 |
* | implement open_wmemstream | Rich Felker | 2011-09-03 | 1 | -0/+95 |
* | implement open_memstream | Rich Felker | 2011-09-03 | 1 | -0/+94 |
* | fix crash in dns code with new stdio locking code | Rich Felker | 2011-08-01 | 1 | -0/+1 |
* | add proper fuxed-based locking for stdio | Rich Felker | 2011-07-30 | 14 | -39/+44 |
* | eliminate dependence of perror on printf | Rich Felker | 2011-07-30 | 1 | -10/+5 |
* | fix logic error in fread | Rich Felker | 2011-07-16 | 1 | -6/+1 |
* | printf: "if a precision is specified, the '0' flag shall be ignored." | Rich Felker | 2011-07-04 | 1 | -1/+1 |
* | zero precision with zero value should not inhibit prefix/width printing | Rich Felker | 2011-07-04 | 1 | -1/+4 |
* | printf("%#x",0) should print 0 not 0x0 | Rich Felker | 2011-07-04 | 1 | -1/+1 |
* | fix logic in __fwriting | Rich Felker | 2011-06-30 | 1 | -1/+1 |
* | add and consolidate nasty stdio_ext junk | Rich Felker | 2011-06-30 | 3 | -17/+57 |
* | implement the nonstandard GNU function fpurge | Rich Felker | 2011-06-30 | 1 | -0/+11 |
* | avoid 64bit warnings when using pointers as entropy for temp names | Rich Felker | 2011-06-13 | 2 | -2/+4 |
* | fix the last known rounding bug in floating point printing | Rich Felker | 2011-05-11 | 1 | -3/+4 |
* | reduce some ridiculously large spin counts | Rich Felker | 2011-05-06 | 1 | -1/+1 |
* | fix fclose return status logic, again | Rich Felker | 2011-05-02 | 1 | -1/+2 |
* | fix undefined call order in fclose, possible lost output depending on compiler | Rich Felker | 2011-05-01 | 1 | -1/+1 |
* | minor optimization in puts: use inline putc_unlocked macro for newline | Rich Felker | 2011-05-01 | 1 | -1/+1 |
* | fix 2 eof-related bugs in scanf | Rich Felker | 2011-04-25 | 1 | -3/+4 |
* | clean up handling of thread/nothread mode, locking | Rich Felker | 2011-04-17 | 2 | -5/+1 |
* | debloat: use __syscall instead of syscall where possible | Rich Felker | 2011-04-17 | 4 | -5/+5 |
* | avoid setting errno when checking for tty | Rich Felker | 2011-04-15 | 2 | -2/+2 |
* | make tmpfile slightly more efficient (use unlink syscall instead of remove) | Rich Felker | 2011-04-14 | 1 | -1/+1 |
* | fix printf("%.9g", 1.1) and similar not dropping trailing zeros | Rich Felker | 2011-04-12 | 1 | -1/+3 |
* | fix fputwc return value | Rich Felker | 2011-04-11 | 1 | -1/+1 |
* | work around a nasty bug in linux readv syscall | Rich Felker | 2011-04-09 | 1 | -3/+4 |
* | add more legacy functions: setlinebuf and setbuffer | Rich Felker | 2011-04-05 | 3 | -1/+15 |
* | fix overflow in printf %N$ argument handling | Rich Felker | 2011-04-05 | 1 | -2/+2 |
* | fix various floating point rounding and formatting errors in *printf | Rich Felker | 2011-04-05 | 1 | -17/+25 |
* | simplify vdprintf implementation greatly based on recent vfprintf changes | Rich Felker | 2011-04-04 | 1 | -5/+2 |
* | use a local temp buffer for unbuffered streams in vfprintf | Rich Felker | 2011-04-04 | 2 | -0/+14 |
* | don't disable seeking after first seek failure | Rich Felker | 2011-04-02 | 1 | -8/+0 |
* | apparently fseek should not set the error flag on failed seek | Rich Felker | 2011-04-02 | 1 | -4/+1 |
* | fix tempnam name generation, and a small bug in tmpnam on retry limit | Rich Felker | 2011-03-29 | 2 | -21/+20 |
* | make tmpfile fail after exceeding max tries. | Rich Felker | 2011-03-29 | 1 | -2/+6 |
* | fix tmpnam to generate better names, not depend on non-ISO-C symbols | Rich Felker | 2011-03-29 | 1 | -25/+17 |
* | fix messed-up errno if remove fails for a non-EISDIR reason | Rich Felker | 2011-03-29 | 1 | -2/+2 |
* | learned something new - remove is supposed to support directories on POSIX | Rich Felker | 2011-03-29 | 1 | -1/+3 |
* | revert some more spin optimizations that turned out to be pessimizations | Rich Felker | 2011-03-28 | 1 | -1/+1 |
* | fix getc - the classic error of trying to store EOF+0-255 in a char type.. | Rich Felker | 2011-03-28 | 1 | -3/+3 |
* | major stdio overhaul, using readv/writev, plus other changes | Rich Felker | 2011-03-28 | 35 | -268/+235 |
* | fix all implicit conversion between signed/unsigned pointers | Rich Felker | 2011-03-25 | 6 | -8/+8 |
* | simplify and optimize FILE lock handling | Rich Felker | 2011-03-24 | 4 | -11/+12 |
* | fix non-atomicity of puts | Rich Felker | 2011-03-24 | 1 | -1/+5 |
* | global cleanup to use the new syscall interface | Rich Felker | 2011-03-20 | 12 | -19/+19 |