Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-12-21 | heed multiple warnings of the type | Denis Vlasenko | |
libc/stdio/_vfprintf.c:1892: warning: passing argument 1 of '_[w]stdio_fwrite' from incompatible pointer type | |||
2008-11-20 | Last portion of libc_hidden_proto removal. | Denis Vlasenko | |
Appears to build fine (several .configs tried) | |||
2008-11-18 | libc_hidden_proto removal, a few more functions | Denis Vlasenko | |
2008-11-18 | libc_hidden_proto removal, just a few functions | Denis Vlasenko | |
2008-09-09 | Fix problem in vfprintf when assertion are enabled. | Carmelo Amoroso | |
Here follow the output of my analysis: __stdio_fwrite expects at least 1 bytes. fputs_unlocked(S,F) calls fwrite_unlocked and this calls __stdio_fwrite only if bytes to be written are > 0, otherwise simply returs 0 (that is correct). During the parsing of format spec it could happen that __stdio_fwrite is called passing an empty string and with assertion enabled it will abort. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> | |||
2008-07-23 | - trim any trailing whitespace | Bernhard Reutner-Fischer | |
2008-06-03 | Remove __PRINTF_INFO_NO_BITFIELD hack, UCLIBC_INTERNAL can be used instead, | Denis Vlasenko | |
and it's slightly shorter. Also removes stray macros from public <printf.h> header and uses spaces for comment indentation. No code changes (verified with objdump). | |||
2008-05-30 | - Avoid warning about undefined preprocessor token. No obj-code changes. | Bernhard Reutner-Fischer | |
2008-05-19 | Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL block | Denis Vlasenko | |
in string.h and strings.h. This caught unguarded string ops in libc/inet/ethers.c __ether_line_w() function. I will wait for fallout reports for a week or so, then continue converting more libc_hidden_proto's. | |||
2008-04-10 | even more fixes for vda-made breakage in vXXXfprintf | Denis Vlasenko | |
(pointed out by Peter S.Mazinger) | |||
2008-04-09 | Factor out the core of vprintf() into separate function | Denis Vlasenko | |
vprintf_internal, so that: * vprintf() does locking and __STDIO_STREAM_TRANS_TO_WRITE thing, then calls vprintf_internal * vsnprintf, vdprintf.c, vasprintf.c use vprintf_internal directly This makes sprintf faster (since it doesn't do any locking) and stops it from pulling in fseek in static compile. | |||
2008-02-07 | Fix stack overflow in _ppfs_parsespec | Carmelo Amoroso | |
2008-01-05 | patch from Hans-Christian Egtvedt to silence some spurious signed warnings | Mike Frysinger | |
2007-01-29 | fix from Atsushi Nemoto for displaying of 64bit types | Mike Frysinger | |
2006-12-06 | stdio update from mjn3 | Eric Andersen | |
2006-03-22 | Correct build if UCLIBC_HAS_CTYPE_TABLES is not defined | Peter S. Mazinger | |
2006-03-10 | Remove all non-constant libc_hidden_data_def(), it is too unreliable, sorry, ↵ | Peter S. Mazinger | |
most of global data relocations are back | |||
2006-02-13 | More renames for IMA | Peter S. Mazinger | |