summaryrefslogtreecommitdiffstats
path: root/libc/stdio
Commit message (Expand)AuthorAgeFilesLines
...
* make cp silentMike Frysinger2005-11-081-2/+2
* Change comment size_t _fpmaxtostr to ssize_tPeter S. Mazinger2005-11-051-1/+1
* Last bits for IMA, now everything can be built w/ DOMULTI=y on gcc-3.4.4 with...Peter S. Mazinger2005-11-031-8/+18
* tweak rules so we dont have to copy the .c files to get 64bit versionsMike Frysinger2005-11-021-3/+2
* Only because of multi sources I had to touch up these and add code duplicationPeter S. Mazinger2005-11-011-3/+12
* Remove last unused references to libc-a-pic-, we use only the lists in libc-a...Peter S. Mazinger2005-11-011-1/+0
* Replace all Makefiles for new build infrastucturePeter S. Mazinger2005-10-291-143/+8
* All Makefile.in's. Only arm/i386/mips/powerpc/x86_64 are done, the other arch...Peter S. Mazinger2005-10-251-0/+143
* Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all objec...Peter S. Mazinger2005-10-121-19/+12
* Clean up pthread include mess. Some of these will be needed to support NPTL, ..."Steven J. Hill"2005-10-041-0/+4
* weaks moved after the related function so gcc4 won't warnPeter S. Mazinger2005-09-2223-130/+126
* enable flockfile and friends if threads are not enabledPeter S. Mazinger2005-09-211-2/+0
* Sigh... I wasn't checking for output errors. NIST/PCTS caught it.Manuel Novoa III2005-07-302-217/+279
* Fix string.h. Change our _susv3_strerror_r to __xpg_strerror_r for glibcManuel Novoa III2005-07-283-3/+3
* Forgot to change name of builtin buffer during last rewrite.Manuel Novoa III2005-03-211-3/+2
* Revert last commit. If I had wanted to include that patch, I would have doneManuel Novoa III2005-03-171-3/+3
* http://bugs.uclibc.org/view.php?id=165Mike Frysinger2005-03-161-3/+3
* When I broke up the stdio code, the "support pre C99 compilers" va_copy compatManuel Novoa III2005-02-142-34/+2
* Define va_copy for pre-C99 compilers (code taken from vfprintf.c).Peter Kjellerstedt2005-02-091-0/+13
* merge parallel build supportMike Frysinger2005-01-251-7/+5
* Avoid compiler warnings.Peter Kjellerstedt2005-01-192-0/+8
* Fix a couple of issues in configurations I hadn't tested.Manuel Novoa III2004-05-071-0/+2
* Oops.. The custom stream funcs should only be compiled if wanted.Manuel Novoa III2004-02-131-2/+4
* New stdio core. Should be more maintainable. Fixes a couple of bugs.Manuel Novoa III2004-02-11100-7225/+8657
* Fix __freadable and __fwritable... were using '~' instead of '!'. (ugh)Manuel Novoa III2004-01-021-10/+13
* Oops... temporarily support the old stdio code.Manuel Novoa III2004-01-021-0/+5
* Rewrite popen for SUSv3 compliance.Manuel Novoa III2004-01-021-47/+171
* Fix a long-standing bug with pthreads. A couple of linuxthreads filesManuel Novoa III2003-12-271-6/+6
* Fix a couple of 'declaration after statement' errors.Manuel Novoa III2003-12-141-1/+1
* Fix the return value for fputs when passed an empty string.Manuel Novoa III2003-11-191-1/+4
* Peter Kjellerstedt writes:Eric Andersen2003-10-181-1/+1
* Quick fix to make sure vfprintf always checks stream orientation whenManuel Novoa III2003-09-231-0/+19
* Modify _stdio_READ to conform with C99, as stdio input behavior uponManuel Novoa III2003-09-221-28/+66
* Ugh... EOF handling by scanf was completely broken. :-( Regretably,Manuel Novoa III2003-09-221-67/+66
* Fix a problem reported by Atsushi Nemoto <anemo@mba.ocn.ne.jp>Manuel Novoa III2003-09-131-3/+7
* Signifcantly speed out integer to string conversion for printf.Manuel Novoa III2003-09-081-49/+38
* Implement vsnprintf (old_vfprintf only) and vsnscanf when uClibc isManuel Novoa III2003-09-064-70/+358
* Always build _store_inttype since it is used by the new scanf.Manuel Novoa III2003-09-051-3/+3
* Oops... Forgot to convert this to the new floating point conversion func.Manuel Novoa III2003-09-051-6/+48
* Fix precision bug for %g conversion specifier when using %f style.Manuel Novoa III2003-09-011-3/+4
* scanf %lc,%ls,%l[ would always set mb_fail on eof or error,Manuel Novoa III2003-08-181-8/+22
* Add a new *scanf implementation, includeing the *wscanf functions.Manuel Novoa III2003-08-015-936/+2806
* Bug fix from Peter Kjellerstedt <peter.kjellerstedt@axis.com>. vfscanf wasManuel Novoa III2003-07-171-1/+9
* Yikes! This was doing another lock instead of unlocking the stream.Manuel Novoa III2003-07-141-1/+1
* Do not let isatty mess up errnoEric Andersen2003-06-271-3/+11
* Change 'undefined behavior' of fflush() on readonly or reading streamsManuel Novoa III2003-06-241-8/+18
* Sorry. Changed this while fixing the last bug and forgot to change itManuel Novoa III2003-05-231-1/+1
* Fix (hopefully) scanf behavior for nul bytes in the stream when processingManuel Novoa III2003-05-152-7/+23
* Wasn't thinking... we don't need to seek to end when appending if stdioManuel Novoa III2003-01-231-12/+0
* Fixed a bug related file position in append mode. _stdio_fwrite nowManuel Novoa III2003-01-221-11/+52