summaryrefslogtreecommitdiffstats
path: root/libc/stdio
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix fwrite return value bug reported by Matthias Kilian ↵Manuel Novoa III2001-05-071-1/+2
| | | | <kili@outback.escape.de>.
* A couple of printf fixes from Johan Adolfsson (johan.adolfsson@axis.com).Manuel Novoa III2001-05-071-23/+31
|
* Be really sneaky and use GNU ld special stuff so that whenever folksEric Andersen2001-04-251-0/+1
| | | | | | use the unsafe gets, they will get a warning from the linker. muahahaha. This method will soon be applied to fork() w/o an mmu etc... -Erik
* Update temp file handling and use a single function to do allEric Andersen2001-04-184-87/+116
| | | | | the heavy lifting (most of the heavy lifting stolen from glibc, but reduced a bit).
* Fix include/errno.h to not use kernel header, and instead use bits/errno.h.Eric Andersen2001-04-064-12/+12
| | | | | | | This required we use _LIBC instead of __LIBC__ to be consistent with glibc. This had some sideffects in sys/syscalls.h. While fixing things, I made everything use __set_errno() for (eventual) thread support. -Erik
* Bug fix from Peter Kjellerstedt <Peter.Kjellerstedt@axis.com>.Manuel Novoa III2001-03-231-0/+7
|
* Since Erik apparently wants def/undef vs def 1/0...Manuel Novoa III2001-03-192-34/+34
|
* Test for Config features using features.h.Manuel Novoa III2001-03-183-62/+46
|
* Fix fdopen mode-compatibility test and errno setting.Manuel Novoa III2001-03-171-1/+8
|
* Fix bug with %c... takes care of bug reported with busybox ps.Manuel Novoa III2001-03-151-3/+6
|
* New version of scanf, with floating point support.Manuel Novoa III2001-03-131-378/+545
|
* Delete a stray character that hopped into the file...Manuel Novoa III2001-03-131-1/+1
|
* Hack long long support into scanf. For now, will fail for unsigned long longsManuel Novoa III2001-03-122-4/+24
| | | | | that are greater that long long max, but works well enough to support interface in busybox. Just a temporary measure until scanf.c is rewritten.
* Fix a bad assertion test.Manuel Novoa III2001-03-071-1/+2
|
* Fix a couple of bugs: check mode is legal; open file and check success beforeManuel Novoa III2001-03-031-25/+45
| | | | calling vfork.
* Stupid buglet fix. Don't trash FILE bufstart if buffer allocation fails.Manuel Novoa III2001-03-011-11/+4
|
* Fix a buglet regarding floating point output for ?nprintf functions.Manuel Novoa III2001-02-281-1/+2
|
* stdio mostly rewritten... passes lots of tests now.Manuel Novoa III2001-02-274-459/+542
| | | | printf now supports long double, plus some bug fixes.
* Fix a couple of bugs in _fopen and fclose, plus change a few internals.Manuel Novoa III2001-02-192-60/+83
|
* Lots of stdio cleanups. Several bug fixes, addition of a number of functionsManuel Novoa III2001-02-194-275/+384
| | | | | to supplement macros in stdio.h, change perror to use stdio package instead of "write". Also add back in weak stdio initialization for static lib case.
* Add vdprintf function. Note: will be rewritten to check if file descriptor ↵Manuel Novoa III2001-02-152-1/+12
| | | | has an associated FILE to avoid bad interactions with buffered output, but needed for busybox right now and that implementation has the same bug.
* Fix stdin/stdout/stderr for now.Manuel Novoa III2001-02-151-0/+4
|
* Remove now irrelevant comment.Eric Andersen2001-02-091-3/+0
|
* Silence warnings -- add func declaration.Eric Andersen2001-02-091-0/+1
| | | | -Erik
* Revert stdio to initializing itself. Not quite a pretty but that ensures thatEric Andersen2001-02-091-1/+34
| | | | | | | we don't blow up by using too much stack space, and simplifies the job of supporting new architectures, since they don't have to mess with calling foo init functions in crt0 and cleaning up the resulting damage. -Erik
* Fix a couple of bugs in printf. Add floating pt output for doubles. Yeah!Manuel Novoa III2001-01-302-7/+44
| | | | | Modified stdio/Makefile to build printf.c according to Config values for HAS_FLOATS and HAS_LONG_LONG.
* Really fixed 0-pad bug this time. ;-) Code-size reductions if sizeof(int) andManuel Novoa III2001-01-281-54/+62
| | | | sizeof(long) equal. printf # flag now works for b (binary) specifier.
* Fixed (hopefully) 0-pad bug in printf. Added asprintf function. ReworkedManuel Novoa III2001-01-272-31/+71
| | | | the *s*printf functions to no longer use a static fake file.
* Fixed stderr initialization bug (mine).Manuel Novoa III2001-01-241-1/+1
|
* Fix static buffer used initialization for FIXED_BUFFERS > 2.Manuel Novoa III2001-01-171-4/+13
|
* Cannot portably pass a short via va_args, since it will beEric Andersen2001-01-121-2/+2
| | | | | | internally converted to an int on many platforms. So make it be an int explicitly and call that good enough. -Erik
* A large update from Manuel Novoa III <mnovoa3@bellsouth.net>.Eric Andersen2001-01-113-173/+97
|
* A number of updates from Manuel Novoa III. Things look good...Eric Andersen2000-12-201-220/+398
|
* A few cleanups. Fix fflush so it remembers to init stdio.Eric Andersen2000-12-121-8/+10
|
* Several updates from W. GreathouseEric Andersen2000-11-301-19/+21
|
* Some cleanups from Manuel Novoa III <mnovoa3@bellsouth.net>,Eric Andersen2000-11-172-2/+5
| | | | and a bit of extra cleanup in the test makefiles.
* Add in tmpnam() support from David Whedon <dwhedon@gordian.com>,Eric Andersen2000-11-158-22/+135
| | | | rework include/stdio.h, and fix up the resultant damage.
* Fix doc blunder.Eric Andersen2000-11-043-8/+8
|
* Make spelling of uClibc be consistant.Eric Andersen2000-11-043-3/+3
|
* More cleanups. Fix things so tinylogin compiles.Eric Andersen2000-11-041-2/+2
| | | | Fix a bug in getdelim -- patch from David Whedon <dwhedon@gordian.com>.
* Add some more stuff -- {get|set}mntent, getline, getdelim, etc.Eric Andersen2000-10-263-1/+103
|
* Strip all object files of all non global symbols and .note andEric Andersen2000-10-201-1/+8
| | | | | .comment, saving a lot of space in the resultant binaries... -Erik
* Makefile updateEric Andersen2000-10-121-1/+1
|
* Finish reorganizing things. At least I think I've finished.Eric Andersen2000-10-114-1/+92
|
* Bug ugly formatting updateEric Andersen2000-10-095-1413/+1398
|
* Dependancy updateEric Andersen2000-10-071-3/+0
|
* Fix all the makefiles. Clean up some warnings, cleanup some headers.Eric Andersen2000-10-041-26/+40
| | | | -Erik
* Add in snprintf and vsnprintfEric Andersen2000-08-112-76/+104
| | | | -Erik
* Lots and lots of cleanups.Eric Andersen2000-07-062-53/+57
| | | | -Erik
* Many bugfixes, header cleanups, etc. Added abort and glob.Eric Andersen2000-07-051-1/+0
| | | | | It is getting closer... -Erik