fix a couple misleading/wrong signal descriptions in strsignal
[musl] / src / stdio /
2013-06-22 Rich Felkerfix scanf %c conversion wrongly storing a terminating...
2013-06-06 Rich Felkerimplement 'm' modifier for wide scanf variants
2013-06-05 Rich Felkerimplement the 'm' (malloc) modifier for scanf
2013-06-05 Rich Felkerrefactor wide-char scanf string handling
2013-06-04 Rich Felkersimplify some logic in scanf and remove redundant inval...
2013-06-04 Rich Felkerrefactor scanf core to use common code path for all...
2013-04-06 Rich Felkerfix argument omission in ABI-compat weak_alias for...
2013-04-06 Isaac DunhamAdd ABI compatability aliases.
2013-03-25 Rich Felkerrewrite popen to use posix_spawn instead of fragile...
2012-12-10 Rich Felkerdocument self-synchronized destruction issue for stdio...
2012-11-14 Rich FelkerMerge remote-tracking branch 'ppc-port/ppc-squashed'
2012-11-09 Rich Felkeralways add memory streams to stdio open file list
2012-11-08 Rich Felkerclean up sloppy nested inclusion from pthread_impl.h
2012-11-08 Rich Felkerclean up stdio_impl.h
2012-11-02 Rich Felkerfix more unused variable warnings
2012-10-27 Rich Felkerseparate getc/putc from fgetc/fputc
2012-10-25 Rich Felkercorrect locking in stdio functions that tried to be...
2012-10-25 Rich Felkergreatly improve freopen behavior
2012-10-25 Rich Felkerremove useless failure-check from freopen (can't happen)
2012-10-21 Rich Felkerfix copy/paste error in popen changes that broke signals
2012-10-19 Rich Felkerfix usage of locks with vfork
2012-10-19 Rich Felkeravoid raising spurious division-by-zero exception in...
2012-10-18 Rich Felkeroverhaul system() and popen() to use vfork; fix various...
2012-09-29 Rich Felkeradd 'e' modifier (close-on-exec) to fopen and fdopen
2012-09-29 Rich Felkerfix some more O_CLOEXEC/SOCK_CLOEXEC issues
2012-09-07 Rich Felkerfix invalid implicit pointer conversion in gnulib-compa...
2012-09-07 Rich Felkeruse restrict everywhere it's required by c99 and/or...
2012-08-26 Rich Felkerimplement "low hanging fruit" from C11
2012-08-14 Rich FelkerMerge remote-tracking branch 'nsz/exp'
2012-08-11 Rich Felkeradd bsd fgetln function
2012-08-11 Rich Felkerminor but worthwhile optimization in printf: avoid...
2012-08-11 Rich Felkertrivial optimization to printf: avoid wasted call frame
2012-07-04 Rich Felkerputw is supposed to return 0 (not the value written...
2012-07-04 Rich Felkermake sure getw/putw agree with prototypes by defining...
2012-07-03 Rich Felkerfix missing function declarations for __stdio_exit
2012-06-20 Rich Felkerfix fwrite return value when full write does not succeed
2012-06-20 Rich Felkeravoid cancellation in pclose
2012-06-20 Rich Felkerfix invalid memory access in pclose
2012-06-20 Rich Felkermake popen cancellation-safe
2012-06-20 Rich Felkerpopen: handle issues with fd0/1 being closed
2012-06-20 Rich Felkerfix another oob pointer arithmetic issue in printf...
2012-06-20 Rich Felkerminor perror behavior fix
2012-06-20 Rich Felkerfix pointer overflow bug in floating point printf
2012-06-19 Rich Felkeradd new stdio extension functions to make gnulib happy
2012-06-19 Rich Felkerstdio: handle file position correctly at program exit
2012-06-19 Rich Felkerminor cleanup in fflush
2012-06-19 Rich Felkerremove flush hook cruft that was never used from stdio
2012-06-18 Rich Felkerchange stdio_ext __freading/__fwriting semantics slightly
2012-06-18 Rich Felkerfdopen should set errno when it fails due to invalid...
2012-06-08 Rich Felkerfix %ls breakage in last printf fix
2012-06-08 Rich Felkerfix printf %ls with precision limit over-read issue
2012-06-08 Rich Felkerfix scanf bug reading literals after width-limited...
2012-06-03 Rich Felkeradd some ugly aliases for LSB ABI compatibility
2012-05-26 Rich Felkeravoid using pthread cleanup push/pop in stdio when...
2012-05-04 Rich Felkerfix uninitialized var in vfwprintf printing 0-prec...
2012-04-19 Rich Felkerfix really bad breakage in strtol, etc.: failure to...
2012-04-18 Rich Felkerfix wide scanf's handling of input failure on %c, and...
2012-04-18 Rich Felkerfix failure to distinguish input/match failure in wide...
2012-04-18 Rich Felkerfix over-read in %ls with non-wide scanf
2012-04-18 Rich Felkerfix broken %s and %[ with no width specifier in wide...
2012-04-18 Rich Felkermake wide scanf %[ respect width
2012-04-17 Rich Felkerfix wide scanf to respect field width for strings
2012-04-17 Rich Felkerfix some bugs in scanf %[ handling detected while writi...
2012-04-17 Rich Felkerintroduce new wide scanf code and remove the last remna...
2012-04-17 Rich Felkeravoid depending on POSIX symbol in code used from plain...
2012-04-17 Rich Felkeravoid null pointer dereference on %*p fields in scanf
2012-04-17 Rich Felkeralso ensure that write buffer is bounded when __stdio_w...
2012-04-17 Rich Felkerfix buffer overflow in vfprintf on long writes to unbuf...
2012-04-17 Rich Felkerfix %lf, etc. with printf
2012-04-16 Rich Felkernew scanf implementation and corresponding integer...
2012-03-17 Rich FelkerMerge remote branch 'nsz/master'
2012-03-13 Rich Felkerfix scanf handling of "0" (followed by immediate EOF...
2012-02-02 Rich Felkermake stdio open, read, and write operations cancellatio...
2011-10-15 Rich Felkersimplify atexit and fflush-on-exit handling
2011-09-29 Rich Felkerdon't crash on null strings in printf
2011-09-22 Rich Felkeravoid setting FILE lock count when not using flockfile
2011-09-05 Rich Felkermore fmemopen null termination fixes
2011-09-05 Rich Felkerfix some fmemopen behaviors
2011-09-04 Rich Felkerfmemopen: fix eof handling, hopefully right this time
2011-09-04 Rich Felkerfmemopen fixes
2011-09-04 Rich Felkermemstreams: fix incorrect handling of file pos > curren...
2011-09-04 Rich Felkeroptimize seek function for memory streams
2011-09-04 Rich Felkerfix twos complement overflow bug in mem streams boundar...
2011-09-04 Rich Felkerimplement fmemopen
2011-09-04 Rich Felkerfix some length calculations in memory streams
2011-09-03 Rich Felkerimplement open_wmemstream
2011-09-03 Rich Felkerimplement open_memstream
2011-08-01 Rich Felkerfix crash in dns code with new stdio locking code
2011-07-30 Rich Felkeradd proper fuxed-based locking for stdio
2011-07-30 Rich Felkereliminate dependence of perror on printf
2011-07-17 Rich Felkerfix logic error in fread
2011-07-04 Rich Felkerprintf: "if a precision is specified, the '0' flag...
2011-07-04 Rich Felkerzero precision with zero value should not inhibit prefi...
2011-07-04 Rich Felkerprintf("%#x",0) should print 0 not 0x0
2011-06-30 Rich Felkerfix logic in __fwriting
2011-06-30 Rich Felkeradd and consolidate nasty stdio_ext junk
2011-06-30 Rich Felkerimplement the nonstandard GNU function fpurge
2011-06-14 Rich Felkeravoid 64bit warnings when using pointers as entropy...
2011-05-11 Rich Felkerfix the last known rounding bug in floating point printing
2011-05-07 Rich Felkerreduce some ridiculously large spin counts
next