summaryrefslogtreecommitdiff
path: root/src/stdio
AgeCommit message (Expand)AuthorLines
2014-02-07in fdopen, avoid setting O_APPEND flag if it's already setRich Felker-1/+2
2014-02-07fix ftello result for append streams with unflushed outputRich Felker-1/+4
2014-01-08add __isoc99_vfscanf weak alias to vfscanfSzabolcs Nagy-0/+2
2013-12-12include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy-9/+3
2013-10-07minor vfprintf and vfwprintf changes to please static code analyzersSzabolcs Nagy-6/+11
2013-10-04removed unused variable in vfwprintfRich Felker-2/+1
2013-09-01fix special-case breakage in popen due to reversed argument orderRich Felker-1/+1
2013-08-31fix invalid %m format crash in wide scanf variantsRich Felker-0/+2
2013-08-31avoid crash in scanf when invalid %m format is encounteredRich Felker-0/+2
2013-08-02protect against long double type mismatches (mainly powerpc for now)Rich Felker-0/+7
2013-07-20fix uninitialized/stale use of alloc (%m modifier) flag in scanfRich Felker-0/+4
2013-06-22fix scanf %c conversion wrongly storing a terminating null byteRich Felker-4/+8
2013-06-06implement 'm' modifier for wide scanf variantsRich Felker-7/+40
2013-06-05implement the 'm' (malloc) modifier for scanfRich Felker-22/+48
2013-06-05refactor wide-char scanf string handlingRich Felker-55/+32
2013-06-04simplify some logic in scanf and remove redundant invalid-format checkRich Felker-18/+8
2013-06-04refactor scanf core to use common code path for all string formatsRich Felker-85/+52
2013-04-06fix argument omission in ABI-compat weak_alias for fscanfRich Felker-1/+1
2013-04-05Add ABI compatability aliases.Isaac Dunham-0/+33
2013-03-24rewrite popen to use posix_spawn instead of fragile vfork hacksRich Felker-41/+41
2012-12-10document self-synchronized destruction issue for stdio lockingRich Felker-0/+10
2012-11-09always add memory streams to stdio open file listRich Felker-18/+21
2012-11-08clean up sloppy nested inclusion from pthread_impl.hRich Felker-0/+4
2012-11-08clean up stdio_impl.hRich Felker-2/+83
2012-11-01fix more unused variable warningsRich Felker-3/+2
2012-10-27separate getc/putc from fgetc/fputcRich Felker-6/+25
2012-10-24correct locking in stdio functions that tried to be lock-freeRich Felker-16/+36
2012-10-24greatly improve freopen behaviorRich Felker-15/+27
2012-10-24remove useless failure-check from freopen (can't happen)Rich Felker-2/+2
2012-10-21fix copy/paste error in popen changes that broke signalsRich Felker-1/+1
2012-10-19fix usage of locks with vforkRich Felker-1/+1
2012-10-18avoid raising spurious division-by-zero exception in printfRich Felker-1/+1
2012-10-18overhaul system() and popen() to use vfork; fix various related bugsRich Felker-24/+44
2012-09-29add 'e' modifier (close-on-exec) to fopen and fdopenRich Felker-2/+5
2012-09-29fix some more O_CLOEXEC/SOCK_CLOEXEC issuesRich Felker-1/+1
2012-09-06fix invalid implicit pointer conversion in gnulib-compat functionsRich Felker-1/+1
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker-43/+43
2012-08-25implement "low hanging fruit" from C11Rich Felker-2/+2
2012-08-11add bsd fgetln functionRich Felker-0/+20
2012-08-10minor but worthwhile optimization in printf: avoid expensive strspnRich Felker-4/+2
2012-08-10trivial optimization to printf: avoid wasted call frameRich Felker-1/+1
2012-07-04putw is supposed to return 0 (not the value written) on successRich Felker-1/+1
2012-07-04make sure getw/putw agree with prototypes by defining _GNU_SOURCERich Felker-0/+2
2012-07-02fix missing function declarations for __stdio_exitRich Felker-0/+4
2012-06-20fix fwrite return value when full write does not succeedRich Felker-1/+1
2012-06-20avoid cancellation in pcloseRich Felker-3/+4
2012-06-20fix invalid memory access in pcloseRich Felker-1/+2
2012-06-20make popen cancellation-safeRich Felker-0/+7
2012-06-20popen: handle issues with fd0/1 being closedRich Felker-3/+3
2012-06-20fix another oob pointer arithmetic issue in printf floating pointRich Felker-1/+1