about summary refs log tree commit diff
path: root/src/stdio
Commit message (Expand)AuthorAgeFilesLines
* replace all remaining internal uses of pthread_self with __pthread_selfRich Felker2014-06-101-1/+1
* add O_CLOEXEC fallback for open and related functionsRich Felker2014-06-062-0/+3
* fix fd leak in tmpfile when the fdopen operation failsRich Felker2014-06-061-1/+2
* simplify vasprintf implementationRich Felker2014-06-041-14/+1
* use cleaner code for handling float rounding in vfprintfSzabolcs Nagy2014-05-301-3/+1
* support linux kernel apis (new archs) with old syscalls removedRich Felker2014-05-295-2/+31
* fix missing declaration of strcpy in implementation of tmpnamRich Felker2014-05-271-0/+1
* overhaul tmpfile, tmpnam, and tempnam functionsRich Felker2014-05-273-55/+48
* support kernels with no SYS_open syscall, only SYS_openatRich Felker2014-05-243-3/+3
* fix printf rounding with %g for some corner case midpointsRich Felker2014-04-071-1/+1
* fix failure of printf %g to strip trailing zeros in some casesRich Felker2014-04-071-1/+1
* fix carry into uninitialized slots during printf floating point roundingRich Felker2014-04-071-1/+1
* always initialize thread pointer at program startRich Felker2014-03-242-14/+6
* fix incorrect rounding in printf floating point corner casesRich Felker2014-03-091-2/+2
* fix buffer overflow in printf formatting of denormals with low bit setRich Felker2014-03-091-1/+2
* in fdopen, avoid setting O_APPEND flag if it's already setRich Felker2014-02-071-1/+2
* fix ftello result for append streams with unflushed outputRich Felker2014-02-072-1/+4
* add __isoc99_vfscanf weak alias to vfscanfSzabolcs Nagy2014-01-081-0/+2
* include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy2013-12-126-9/+3
* minor vfprintf and vfwprintf changes to please static code analyzersSzabolcs Nagy2013-10-072-6/+11
* removed unused variable in vfwprintfRich Felker2013-10-041-2/+1
* fix special-case breakage in popen due to reversed argument orderRich Felker2013-09-011-1/+1
* fix invalid %m format crash in wide scanf variantsRich Felker2013-08-311-0/+2
* avoid crash in scanf when invalid %m format is encounteredRich Felker2013-08-311-0/+2
* protect against long double type mismatches (mainly powerpc for now)Rich Felker2013-08-021-0/+7
* fix uninitialized/stale use of alloc (%m modifier) flag in scanfRich Felker2013-07-202-0/+4
* fix scanf %c conversion wrongly storing a terminating null byteRich Felker2013-06-222-4/+8
* implement 'm' modifier for wide scanf variantsRich Felker2013-06-061-7/+40
* implement the 'm' (malloc) modifier for scanfRich Felker2013-06-051-22/+48
* refactor wide-char scanf string handlingRich Felker2013-06-051-55/+32
* simplify some logic in scanf and remove redundant invalid-format checkRich Felker2013-06-041-18/+8
* refactor scanf core to use common code path for all string formatsRich Felker2013-06-041-85/+52
* fix argument omission in ABI-compat weak_alias for fscanfRich Felker2013-04-061-1/+1
* Add ABI compatability aliases.Isaac Dunham2013-04-0511-0/+33
* rewrite popen to use posix_spawn instead of fragile vfork hacksRich Felker2013-03-241-41/+41
* document self-synchronized destruction issue for stdio lockingRich Felker2012-12-101-0/+10
* always add memory streams to stdio open file listRich Felker2012-11-093-18/+21
* clean up sloppy nested inclusion from pthread_impl.hRich Felker2012-11-082-0/+4
* clean up stdio_impl.hRich Felker2012-11-0835-2/+83
* fix more unused variable warningsRich Felker2012-11-012-3/+2
* separate getc/putc from fgetc/fputcRich Felker2012-10-274-6/+25
* correct locking in stdio functions that tried to be lock-freeRich Felker2012-10-246-16/+36
* greatly improve freopen behaviorRich Felker2012-10-243-15/+27
* remove useless failure-check from freopen (can't happen)Rich Felker2012-10-241-2/+2
* fix copy/paste error in popen changes that broke signalsRich Felker2012-10-211-1/+1
* fix usage of locks with vforkRich Felker2012-10-191-1/+1
* avoid raising spurious division-by-zero exception in printfRich Felker2012-10-181-1/+1
* overhaul system() and popen() to use vfork; fix various related bugsRich Felker2012-10-181-24/+44
* add 'e' modifier (close-on-exec) to fopen and fdopenRich Felker2012-09-292-2/+5
* fix some more O_CLOEXEC/SOCK_CLOEXEC issuesRich Felker2012-09-291-1/+1