| Commit message (Expand) | Author | Age | Files | Lines |
* | New stdio core. Should be more maintainable. Fixes a couple of bugs. | Manuel Novoa III | 2004-02-11 | 1 | -3677/+0 |
* | Fix __freadable and __fwritable... were using '~' instead of '!'. (ugh) | Manuel Novoa III | 2004-01-02 | 1 | -10/+13 |
* | Fix a long-standing bug with pthreads. A couple of linuxthreads files | Manuel Novoa III | 2003-12-27 | 1 | -6/+6 |
* | Fix the return value for fputs when passed an empty string. | Manuel Novoa III | 2003-11-19 | 1 | -1/+4 |
* | Modify _stdio_READ to conform with C99, as stdio input behavior upon | Manuel Novoa III | 2003-09-22 | 1 | -28/+66 |
* | Signifcantly speed out integer to string conversion for printf. | Manuel Novoa III | 2003-09-08 | 1 | -49/+38 |
* | Add a new *scanf implementation, includeing the *wscanf functions. | Manuel Novoa III | 2003-08-01 | 1 | -75/+125 |
* | Do not let isatty mess up errno | Eric Andersen | 2003-06-27 | 1 | -3/+11 |
* | Change 'undefined behavior' of fflush() on readonly or reading streams | Manuel Novoa III | 2003-06-24 | 1 | -8/+18 |
* | Fix (hopefully) scanf behavior for nul bytes in the stream when processing | Manuel Novoa III | 2003-05-15 | 1 | -1/+10 |
* | Wasn't thinking... we don't need to seek to end when appending if stdio | Manuel Novoa III | 2003-01-23 | 1 | -12/+0 |
* | Fixed a bug related file position in append mode. _stdio_fwrite now | Manuel Novoa III | 2003-01-22 | 1 | -11/+52 |
* | Fix a silly bug in _wstdio_fwrite. wprintf %s should now work correctly. | Manuel Novoa III | 2003-01-05 | 1 | -1/+3 |
* | The big thing is locale dependent collation support. | Manuel Novoa III | 2002-12-20 | 1 | -5/+32 |
* | Ok... here's the summary: | Manuel Novoa III | 2002-11-22 | 1 | -0/+58 |
* | For now, leave the "Oddly enough, __fsetlocking() is NOT threadsafe." | Eric Andersen | 2002-11-05 | 1 | -0/+2 |
* | Implement locale-specific grouping in printf for base 10 integer conversions | Manuel Novoa III | 2002-11-03 | 1 | -0/+75 |
* | Changed fclose behavior when custom streams were enabled. Previously, | Manuel Novoa III | 2002-08-25 | 1 | -2/+21 |
* | __fsetlocking() and FILE field user_locking were completely broken. :-( | Manuel Novoa III | 2002-08-13 | 1 | -9/+20 |
* | Revert commit by davidm to printf.c that initialized conv_num | Manuel Novoa III | 2002-08-12 | 1 | -3/+3 |
* | Changed fflush() behavior to no-op for r/w streams in read-mode. | Manuel Novoa III | 2002-08-06 | 1 | -17/+33 |
* | A couple of little cleanups I forgot to check in. | Manuel Novoa III | 2002-08-03 | 1 | -2/+0 |
* | Attempt to clean up the strerror_r situation. | Manuel Novoa III | 2002-07-07 | 1 | -36/+2 |
* | Enable WCHAR support for C/POSIX stub locales. | Manuel Novoa III | 2002-07-03 | 1 | -134/+244 |
* | Fix perror() and printf("%m") to not call strerror(), as required by the | Manuel Novoa III | 2002-06-18 | 1 | -5/+48 |
* | Revert Erik's patch to vasprintf and fix the real issue. | Manuel Novoa III | 2002-06-11 | 1 | -0/+1 |
* | Fix the read/write auto-transition bugs. Note that if we can't | Manuel Novoa III | 2002-04-09 | 1 | -29/+36 |
* | Compile in flockfile and friends by default | Eric Andersen | 2002-03-21 | 1 | -0/+8 |
* | Fix a pointer bug in setvbuf reported by Bart Visscher <magick@Linux-Fan.com>. | Manuel Novoa III | 2002-03-16 | 1 | -2/+6 |
* | I vow to rerun _all_ the tests before making commits. :-( | Manuel Novoa III | 2002-03-14 | 1 | -2/+2 |
* | Fix stdin/stdout initialization of buffering type. I had changed the | Manuel Novoa III | 2002-03-13 | 1 | -2/+2 |
* | Fix another O_LARGEFILE bug. Also, I forget to make floating point optional | Manuel Novoa III | 2002-03-12 | 1 | -2/+10 |
* | So much for fcntl flags being resonably consistent across archs... (hopefully) | Manuel Novoa III | 2002-03-12 | 1 | -10/+14 |
* | Fix fflush(NULL) and tweak _stdio_term() for the unbuffered stdio option. | Manuel Novoa III | 2002-03-12 | 1 | -2/+10 |
* | Deal with cvs "feature"... or is that cvs _user_... | Manuel Novoa III | 2002-03-12 | 1 | -0/+3171 |
* | Swap in the new stdio code. | Manuel Novoa III | 2002-03-12 | 1 | -1117/+0 |
* | Be consistant and use an unsigned char * throughout | Eric Andersen | 2002-02-26 | 1 | -2/+3 |
* | I shouldn't try to program when sleepy, since I totally botched | Eric Andersen | 2002-02-25 | 1 | -4/+4 |
* | When messing with fd NONBLOCK status, put things back the way we found | Eric Andersen | 2002-02-25 | 1 | -1/+4 |
* | IEEE Std 1003.1-2001 says that the "fclose() function shall fail [with] | Eric Andersen | 2002-02-23 | 1 | -7/+1 |
* | Per discussion with Manuel, when we call __stdio_flush_buffers | Eric Andersen | 2002-02-23 | 1 | -1/+9 |
* | Rename __stdio_close_all to __stdio_flush_buffers. Eliminate an | Eric Andersen | 2002-02-18 | 1 | -2/+2 |
* | Add missing ctermid. Also add putc and getc (in case they get | Eric Andersen | 2001-11-21 | 1 | -0/+19 |
* | This commit makes large file support actually work (when enabled in | Eric Andersen | 2001-10-17 | 1 | -9/+25 |
* | Fix fseek behavior. | Manuel Novoa III | 2001-09-25 | 1 | -2/+3 |
* | Use "stdin", "stdout", and "stderr", not "_stdin", "_stdout", and | Eric Andersen | 2001-08-24 | 1 | -10/+10 |
* | Add the __fopen prototype, since I pulled it from stdio.h | Eric Andersen | 2001-08-24 | 1 | -0/+4 |
* | Oops... left in a debugging line. | Manuel Novoa III | 2001-07-28 | 1 | -1/+0 |
* | Back out the changes to _uClibc_fread and loop in fread() if incomplete, to | Manuel Novoa III | 2001-07-28 | 1 | -22/+21 |
* | Yes... the previous "fix" was broken too... the result of careless cutting | Manuel Novoa III | 2001-07-26 | 1 | -1/+1 |