about summary refs log tree commit diff
path: root/src/stdio
Commit message (Expand)AuthorAgeFilesLines
* fix remaining direct use of stat syscalls outside fstatat.cRich Felker2020-02-122-4/+6
* fix return value of ungetc when argument is outside unsigned char rangeRich Felker2019-10-181-1/+1
* fix %lf in wprintfBrion Vibber2019-09-131-0/+2
* use namespace-safe __lseek for __stdio_seek instead of direct syscallRich Felker2019-07-161-8/+2
* allow fmemopen with zero sizeRich Felker2019-06-251-1/+1
* make fgetwc set error indicator for stream on encoding errorsRich Felker2019-05-051-2/+8
* support archs with no renameat syscall, only renameat2Drew DeVault2019-03-211-2/+4
* setvbuf: return failure if mode is invalidA. Wilcox2019-03-121-1/+3
* fix behavior of gets when input line contains a null byteRich Felker2019-02-131-3/+8
* fix failure to flush stderr when fflush(0) is calledRich Felker2018-11-021-1/+4
* fix deadlock and buffered data loss race in fcloseRich Felker2018-11-021-13/+19
* further optimize getc/putc when locking is neededRich Felker2018-10-182-10/+10
* fix build regression due to missing file for putc changesRich Felker2018-10-181-0/+22
* bypass indirection through pointer objects to access stdin/out/errRich Felker2018-10-183-9/+15
* optimize hot paths of putc with manual shrink-wrappingRich Felker2018-10-173-13/+8
* optimize hot paths of getc with manual shrink-wrappingRich Felker2018-10-174-15/+30
* move stdio locking MAYBE_WAITERS definition to stdio_impl.hRich Felker2018-10-162-4/+0
* fix race condition in file lockingKaarle Ritvanen2018-09-181-6/+6
* getdelim: only grow buffer when necessary, improve OOM behaviorRich Felker2018-09-161-10/+17
* fix null pointer subtraction and comparison in stdioRich Felker2018-09-1613-29/+39
* fix failure of getdelim to set stream orientation on errorRich Felker2018-09-161-0/+2
* split internal lock API out of libc.h, creating lock.hRich Felker2018-09-121-1/+1
* remove spurious inclusion of libc.h for LFS64 ABI aliasesRich Felker2018-09-127-14/+7
* reduce spurious inclusion of libc.hRich Felker2018-09-1227-12/+19
* hide purely dependency-triggering functions in stdio __toread & __towriteRich Felker2018-09-122-2/+2
* overhaul internally-public declarations using wrapper headersRich Felker2018-09-124-8/+4
* move __stdio_exit_needed to stdio_impl.hRich Felker2018-09-122-4/+0
* make internal declarations for flockfile tracking functions checkableRich Felker2018-09-122-4/+0
* fix issues from public functions defined without declaration visibleRich Felker2018-09-122-0/+2
* prevent perror from clobbering stderr's orientationRich Felker2018-08-301-0/+8
* make vfprintf set stream orientation even for zero-length outputRich Felker2018-08-291-1/+2
* re-fix vfprintf temporary buffer logicRich Felker2018-08-291-2/+2
* fix missing flush of stderr at exit if it was put in buffered modeRich Felker2018-08-291-0/+1
* vfwprintf: honor field width with 'c' format typeA. Wilcox2018-08-281-1/+4
* set stream orientations in open_[w]memstreamRich Felker2018-08-282-0/+3
* make fmemopen's w+ mode truncate the bufferRich Felker2018-08-281-0/+1
* set errno when fileno is called on a FILE with no underlying fdRich Felker2018-08-281-4/+7
* fix printf precision specifier for hex floats on non-ld80 archsRich Felker2018-08-231-0/+1
* fix writes outside buffer by ungetc after setvbufRich Felker2018-07-131-1/+1
* setvbuf: minor comment typo fixWill Dietz2018-04-191-1/+1
* add support for caller-provided buffers to setvbufRich Felker2018-04-181-11/+14
* clean up allocation/setup logic for open_[w]memstreamRich Felker2018-04-182-38/+50
* clean up allocation/setup logic for fmemopenRich Felker2018-04-181-21/+31
* minor cleanup in fopencookieRich Felker2018-04-181-5/+2
* refactor flockfile not to duplicate lock mechanism logicRich Felker2018-04-182-12/+14
* fix stdio lock dependency on read-after-free not faultingRich Felker2018-04-183-20/+24
* fix aliasing violations in fgetpos/fsetposRich Felker2018-02-242-2/+2
* in vswprintf, initialize the FILE rather than memset-and-assignRich Felker2018-02-241-9/+8
* remove unused MIN macro from getdelim source fileRich Felker2018-02-241-2/+0
* remove useless null check before call to free in fcloseRich Felker2018-02-241-1/+1