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