..
__fclose_ca.c
initial check-in, version 0.5.0
15 years ago
__fdopen.c
in fdopen, avoid setting O_APPEND flag if it's already set
12 years ago
__fmodeflags.c
greatly improve freopen behavior
14 years ago
__fopen_rb_ca.c
add O_CLOEXEC fallback for open and related functions
12 years ago
__lockfile.c
document self-synchronized destruction issue for stdio locking
14 years ago
__overflow.c
major stdio overhaul, using readv/writev, plus other changes
15 years ago
__stdio_close.c
global cleanup to use the new syscall interface
15 years ago
__stdio_exit.c
work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1
12 years ago
__stdio_read.c
always initialize thread pointer at program start
12 years ago
__stdio_seek.c
don't disable seeking after first seek failure
15 years ago
__stdio_write.c
always initialize thread pointer at program start
12 years ago
__stdout_write.c
clean up stdio_impl.h
14 years ago
__string_read.c
clean up stdio_impl.h
14 years ago
__toread.c
simplify __stdio_exit static linking logic
12 years ago
__towrite.c
simplify __stdio_exit static linking logic
12 years ago
__uflow.c
fix getc - the classic error of trying to store EOF+0-255 in a char type..
15 years ago
asprintf.c
cleanup asprintf stuff
15 years ago
clearerr.c
initial check-in, version 0.5.0
15 years ago
dprintf.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
ext.c
change stdio_ext __freading/__fwriting semantics slightly
14 years ago
ext2.c
fix invalid implicit pointer conversion in gnulib-compat functions
14 years ago
fclose.c
fix false ownership of stdio FILEs due to tid reuse
12 years ago
feof.c
correct locking in stdio functions that tried to be lock-free
14 years ago
ferror.c
correct locking in stdio functions that tried to be lock-free
14 years ago
fflush.c
work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1
12 years ago
fgetc.c
separate getc/putc from fgetc/fputc
14 years ago
fgetln.c
include cleanups: remove unused headers and add feature test macros
13 years ago
fgetpos.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
fgets.c
fix multiple stdio functions' behavior on zero-length operations
12 years ago
fgetwc.c
clean up stdio_impl.h
14 years ago
fgetws.c
clean up stdio_impl.h
14 years ago
fileno.c
correct locking in stdio functions that tried to be lock-free
14 years ago
flockfile.c
add proper fuxed-based locking for stdio
15 years ago
fmemopen.c
always add memory streams to stdio open file list
14 years ago
fopen.c
add O_CLOEXEC fallback for open and related functions
12 years ago
fprintf.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
fputc.c
separate getc/putc from fgetc/fputc
14 years ago
fputs.c
fix multiple stdio functions' behavior on zero-length operations
12 years ago
fputwc.c
clean up stdio_impl.h
14 years ago
fputws.c
clean up stdio_impl.h
14 years ago
fread.c
fix multiple stdio functions' behavior on zero-length operations
12 years ago
freopen.c
clean up stdio_impl.h
14 years ago
fscanf.c
fix argument omission in ABI-compat weak_alias for fscanf
13 years ago
fseek.c
apparently fseek should not set the error flag on failed seek
15 years ago
fsetpos.c
initial check-in, version 0.5.0
15 years ago
ftell.c
fix ftello result for append streams with unflushed output
12 years ago
ftrylockfile.c
fix linked list corruption in flockfile lists
12 years ago
funlockfile.c
fix false ownership of stdio FILEs due to tid reuse
12 years ago
fwide.c
fix incorrect return value for fwide function
12 years ago
fwprintf.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
fwrite.c
fix multiple stdio functions' behavior on zero-length operations
12 years ago
fwscanf.c
Add ABI compatability aliases.
13 years ago
getc.c
separate getc/putc from fgetc/fputc
14 years ago
getc_unlocked.c
add some ugly aliases for LSB ABI compatibility
14 years ago
getchar.c
initial check-in, version 0.5.0
15 years ago
getchar_unlocked.c
major stdio overhaul, using readv/writev, plus other changes
15 years ago
getdelim.c
clean up stdio_impl.h
14 years ago
getline.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
gets.c
clean up stdio_impl.h
14 years ago
getw.c
make sure getw/putw agree with prototypes by defining _GNU_SOURCE
14 years ago
getwc.c
clean up stdio_impl.h
14 years ago
getwchar.c
clean up stdio_impl.h
14 years ago
open_memstream.c
always add memory streams to stdio open file list
14 years ago
open_wmemstream.c
always add memory streams to stdio open file list
14 years ago
pclose.c
clean up stdio_impl.h
14 years ago
perror.c
minor perror behavior fix
14 years ago
popen.c
fix special-case breakage in popen due to reversed argument order
13 years ago
printf.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
putc.c
separate getc/putc from fgetc/fputc
14 years ago
putc_unlocked.c
add some ugly aliases for LSB ABI compatibility
14 years ago
putchar.c
initial check-in, version 0.5.0
15 years ago
putchar_unlocked.c
major stdio overhaul, using readv/writev, plus other changes
15 years ago
puts.c
minor optimization in puts: use inline putc_unlocked macro for newline
15 years ago
putw.c
putw is supposed to return 0 (not the value written) on success
14 years ago
putwc.c
clean up stdio_impl.h
14 years ago
putwchar.c
clean up stdio_impl.h
14 years ago
remove.c
support linux kernel apis (new archs) with old syscalls removed
12 years ago
rename.c
support linux kernel apis (new archs) with old syscalls removed
12 years ago
rewind.c
rewind must clear the error indicator in addition to seeking
15 years ago
scanf.c
Add ABI compatability aliases.
13 years ago
setbuf.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
setbuffer.c
add more legacy functions: setlinebuf and setbuffer
15 years ago
setlinebuf.c
add more legacy functions: setlinebuf and setbuffer
15 years ago
setvbuf.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
snprintf.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
sprintf.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
sscanf.c
Add ABI compatability aliases.
13 years ago
stderr.c
work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1
12 years ago
stdin.c
work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1
12 years ago
stdout.c
work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1
12 years ago
swprintf.c
include cleanups: remove unused headers and add feature test macros
13 years ago
swscanf.c
include cleanups: remove unused headers and add feature test macros
13 years ago
tempnam.c
support linux kernel apis (new archs) with old syscalls removed
12 years ago
tmpfile.c
fix fd leak in tmpfile when the fdopen operation fails
12 years ago
tmpnam.c
support linux kernel apis (new archs) with old syscalls removed
12 years ago
ungetc.c
major stdio overhaul, using readv/writev, plus other changes
15 years ago
ungetwc.c
clean up stdio_impl.h
14 years ago
vasprintf.c
simplify vasprintf implementation
12 years ago
vdprintf.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
vfprintf.c
use cleaner code for handling float rounding in vfprintf
12 years ago
vfscanf.c
add __isoc99_vfscanf weak alias to vfscanf
13 years ago
vfwprintf.c
fix failure of wide printf/scanf functions to set wide orientation
12 years ago
vfwscanf.c
fix failure of wide printf/scanf functions to set wide orientation
12 years ago
vprintf.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
vscanf.c
Add ABI compatability aliases.
13 years ago
vsnprintf.c
clean up stdio_impl.h
14 years ago
vsprintf.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
vsscanf.c
Add ABI compatability aliases.
13 years ago
vswprintf.c
clean up stdio_impl.h
14 years ago
vswscanf.c
Add ABI compatability aliases.
13 years ago
vwprintf.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
vwscanf.c
Add ABI compatability aliases.
13 years ago
wprintf.c
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
wscanf.c
Add ABI compatability aliases.
13 years ago