summaryrefslogtreecommitdiff
path: root/src/stdio
AgeCommit message (Expand)AuthorFilesLines
2014-05-27fix missing declaration of strcpy in implementation of tmpnamRich Felker1-0/+1
2014-05-27overhaul tmpfile, tmpnam, and tempnam functionsRich Felker3-55/+48
2014-05-24support kernels with no SYS_open syscall, only SYS_openatRich Felker3-3/+3
2014-04-07fix printf rounding with %g for some corner case midpointsRich Felker1-1/+1
2014-04-07fix failure of printf %g to strip trailing zeros in some casesRich Felker1-1/+1
2014-04-07fix carry into uninitialized slots during printf floating point roundingRich Felker1-1/+1
2014-03-24always initialize thread pointer at program startRich Felker2-14/+6
2014-03-09fix incorrect rounding in printf floating point corner casesRich Felker1-2/+2
2014-03-09fix buffer overflow in printf formatting of denormals with low bit setRich Felker1-1/+2
2014-02-07in fdopen, avoid setting O_APPEND flag if it's already setRich Felker1-1/+2
2014-02-07fix ftello result for append streams with unflushed outputRich Felker2-1/+4
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