Rich Felker 733d1ea759 fix wide scanf's use of a compound literal past its lifetime 8 년 전
..
__fclose_ca.c 0b44a0315b initial check-in, version 0.5.0 14 년 전
__fdopen.c 1b0cdc8700 refactor stdio open file list handling, move it out of global libc struct 10 년 전
__fmodeflags.c 892cafff66 greatly improve freopen behavior 12 년 전
__fopen_rb_ca.c 7765706c05 add O_CLOEXEC fallback for open and related functions 11 년 전
__lockfile.c f1c1a5ea82 document self-synchronized destruction issue for stdio locking 12 년 전
__overflow.c e3cd6c5c26 major stdio overhaul, using readv/writev, plus other changes 14 년 전
__stdio_close.c 4e8a356165 overhaul aio implementation for correctness 10 년 전
__stdio_exit.c 1b0cdc8700 refactor stdio open file list handling, move it out of global libc struct 10 년 전
__stdio_read.c 4ef9b828c1 remove cancellation points in stdio 10 년 전
__stdio_seek.c 8de03e1a90 don't disable seeking after first seek failure 14 년 전
__stdio_write.c 4ef9b828c1 remove cancellation points in stdio 10 년 전
__stdout_write.c 2de85a9856 fix possible isatty false positives and unwanted device state changes 10 년 전
__string_read.c 835f9f950e clean up stdio_impl.h 12 년 전
__toread.c 6d1a3dfeaf fix undefined pointer comparison in stdio-internal __toread 9 년 전
__towrite.c c463e11eda simplify __stdio_exit static linking logic 11 년 전
__uflow.c 2b4fcfdacf fix failure of ungetc and ungetwc to work on files in eof status 10 년 전
asprintf.c 3075f7e847 cleanup asprintf stuff 14 년 전
clearerr.c 0b44a0315b initial check-in, version 0.5.0 14 년 전
dprintf.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
ext.c deb90c79e5 change stdio_ext __freading/__fwriting semantics slightly 13 년 전
ext2.c 453059571c fix invalid implicit pointer conversion in gnulib-compat functions 12 년 전
fclose.c 426a0e2912 fix fclose of permanent (stdin/out/err) streams 9 년 전
feof.c c8cb6bcdf0 correct locking in stdio functions that tried to be lock-free 12 년 전
ferror.c c8cb6bcdf0 correct locking in stdio functions that tried to be lock-free 12 년 전
fflush.c c002668eb0 simplify/refactor fflush and make fflush_unlocked an alias for fflush 8 년 전
fgetc.c 8fc7b5965a separate getc/putc from fgetc/fputc 12 년 전
fgetln.c 571744447c include cleanups: remove unused headers and add feature test macros 11 년 전
fgetpos.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
fgets.c 6e2bb7acf4 fix multiple stdio functions' behavior on zero-length operations 10 년 전
fgetwc.c 16f18d036d byte-based C locale, phase 2: stdio and iconv (multibyte callers) 10 년 전
fgetws.c 835f9f950e clean up stdio_impl.h 12 년 전
fileno.c c8cb6bcdf0 correct locking in stdio functions that tried to be lock-free 12 년 전
flockfile.c dba68bf98f add proper fuxed-based locking for stdio 14 년 전
fmemopen.c 1b0cdc8700 refactor stdio open file list handling, move it out of global libc struct 10 년 전
fopen.c 4ef9b828c1 remove cancellation points in stdio 10 년 전
fprintf.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
fputc.c 8fc7b5965a separate getc/putc from fgetc/fputc 12 년 전
fputs.c 10a17dfbad fix assumption in fputs that fwrite returning 0 implies an error 9 년 전
fputwc.c 16f18d036d byte-based C locale, phase 2: stdio and iconv (multibyte callers) 10 년 전
fputws.c 16f18d036d byte-based C locale, phase 2: stdio and iconv (multibyte callers) 10 년 전
fread.c 500c6886c6 fix return value for fread/fwrite when size argument is 0 9 년 전
freopen.c 835f9f950e clean up stdio_impl.h 12 년 전
fscanf.c 5c5ac810c3 fix argument omission in ABI-compat weak_alias for fscanf 12 년 전
fseek.c 9a909fcd91 apparently fseek should not set the error flag on failed seek 14 년 전
fsetpos.c 0b44a0315b initial check-in, version 0.5.0 14 년 전
ftell.c 3af2edee15 fix ftello result for append streams with unflushed output 11 년 전
ftrylockfile.c 3e936ce81b fix linked list corruption in flockfile lists 10 년 전
funlockfile.c 5345c9b884 fix false ownership of stdio FILEs due to tid reuse 10 년 전
fwide.c 16f18d036d byte-based C locale, phase 2: stdio and iconv (multibyte callers) 10 년 전
fwprintf.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
fwrite.c 500c6886c6 fix return value for fread/fwrite when size argument is 0 9 년 전
fwscanf.c 14f0272ea1 Add ABI compatability aliases. 12 년 전
getc.c 8fc7b5965a separate getc/putc from fgetc/fputc 12 년 전
getc_unlocked.c 6a4b9472fb add some ugly aliases for LSB ABI compatibility 13 년 전
getchar.c 0b44a0315b initial check-in, version 0.5.0 14 년 전
getchar_unlocked.c e3cd6c5c26 major stdio overhaul, using readv/writev, plus other changes 14 년 전
getdelim.c c673158d91 fix overly pessimistic realloc strategy in getdelim 9 년 전
getline.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
gets.c 835f9f950e clean up stdio_impl.h 12 년 전
getw.c 98eddc6776 make sure getw/putw agree with prototypes by defining _GNU_SOURCE 13 년 전
getwc.c 835f9f950e clean up stdio_impl.h 12 년 전
getwchar.c 835f9f950e clean up stdio_impl.h 12 년 전
ofl.c 1b0cdc8700 refactor stdio open file list handling, move it out of global libc struct 10 년 전
ofl_add.c 1b0cdc8700 refactor stdio open file list handling, move it out of global libc struct 10 년 전
open_memstream.c 7b9f57f207 fix open_[w]memstream behavior when no writes take place 9 년 전
open_wmemstream.c 7b9f57f207 fix open_[w]memstream behavior when no writes take place 9 년 전
pclose.c 835f9f950e clean up stdio_impl.h 12 년 전
perror.c 82a4499e67 minor perror behavior fix 13 년 전
popen.c fe80a8eb68 fix special-case breakage in popen due to reversed argument order 11 년 전
printf.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
putc.c 8fc7b5965a separate getc/putc from fgetc/fputc 12 년 전
putc_unlocked.c 6a4b9472fb add some ugly aliases for LSB ABI compatibility 13 년 전
putchar.c 0b44a0315b initial check-in, version 0.5.0 14 년 전
putchar_unlocked.c e3cd6c5c26 major stdio overhaul, using readv/writev, plus other changes 14 년 전
puts.c d02c50d6a3 minor optimization in puts: use inline putc_unlocked macro for newline 14 년 전
putw.c 920baab81f putw is supposed to return 0 (not the value written) on success 13 년 전
putwc.c 835f9f950e clean up stdio_impl.h 12 년 전
putwchar.c 835f9f950e clean up stdio_impl.h 12 년 전
remove.c dd5f50da6f support linux kernel apis (new archs) with old syscalls removed 11 년 전
rename.c dd5f50da6f support linux kernel apis (new archs) with old syscalls removed 11 년 전
rewind.c a6238c30d1 rewind must clear the error indicator in addition to seeking 14 년 전
scanf.c 14f0272ea1 Add ABI compatability aliases. 12 년 전
setbuf.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
setbuffer.c e72180083e add more legacy functions: setlinebuf and setbuffer 14 년 전
setlinebuf.c e72180083e add more legacy functions: setlinebuf and setbuffer 14 년 전
setvbuf.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
snprintf.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
sprintf.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
sscanf.c 14f0272ea1 Add ABI compatability aliases. 12 년 전
stderr.c a6adb2bcd8 work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1 11 년 전
stdin.c a6adb2bcd8 work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1 11 년 전
stdout.c a6adb2bcd8 work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1 11 년 전
swprintf.c 571744447c include cleanups: remove unused headers and add feature test macros 11 년 전
swscanf.c 571744447c include cleanups: remove unused headers and add feature test macros 11 년 전
tempnam.c 062bb737de fix failure of tempnam to null-terminate result 9 년 전
tmpfile.c 60158bff74 fix fd leak in tmpfile when the fdopen operation fails 11 년 전
tmpnam.c dd5f50da6f support linux kernel apis (new archs) with old syscalls removed 11 년 전
ungetc.c 2b4fcfdacf fix failure of ungetc and ungetwc to work on files in eof status 10 년 전
ungetwc.c 6ed791e768 fix FILE buffer underflow in ungetwc 9 년 전
vasprintf.c 6a25313c11 simplify vasprintf implementation 11 년 전
vdprintf.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
vfprintf.c 51ab6db4ed fix float formatting of some exact halfway cases 8 년 전
vfscanf.c 5f94205369 add __isoc99_vfscanf weak alias to vfscanf 11 년 전
vfwprintf.c 167dfe9672 fix integer overflows and uncaught EOVERFLOW in printf core 8 년 전
vfwscanf.c 733d1ea759 fix wide scanf's use of a compound literal past its lifetime 8 년 전
vprintf.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
vscanf.c 14f0272ea1 Add ABI compatability aliases. 12 년 전
vsnprintf.c ed86967425 redesign snprintf without undefined behavior 8 년 전
vsprintf.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
vsscanf.c 14f0272ea1 Add ABI compatability aliases. 12 년 전
vswprintf.c 7442442ccc fix swprintf internal buffer state and error handling 8 년 전
vswscanf.c 14f0272ea1 Add ABI compatability aliases. 12 년 전
vwprintf.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
vwscanf.c 14f0272ea1 Add ABI compatability aliases. 12 년 전
wprintf.c 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008 12 년 전
wscanf.c 14f0272ea1 Add ABI compatability aliases. 12 년 전