summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2012-04-17avoid null pointer dereference on %*p fields in scanfRich Felker1-1/+1
2012-04-17also ensure that write buffer is bounded when __stdio_write returnsRich Felker1-0/+1
2012-04-17fix buffer overflow in vfprintf on long writes to unbuffered filesRich Felker1-1/+2
2012-04-16fix %lf, etc. with printfRich Felker1-0/+2
2012-04-16better description for errno==0Rich Felker1-1/+1
2012-04-16implement wcstod and familyRich Felker1-0/+61
2012-04-16avoid hitting eof in wcstolRich Felker1-2/+3
2012-04-16use the new integer parser (FILE/shgetc based) for strtol, wcstol, etc.Rich Felker14-405/+120
2012-04-16new scanf implementation and corresponding integer parser/converterRich Felker6-30/+450
2012-04-16fix buggy limiter handling in shgetcRich Felker1-4/+3
2012-04-16wordexp must set the we_offs entries of we_wordv to null pointersRich Felker1-0/+4
2012-04-16fix crash in wordfree if we_offs is not initialized by the callerRich Felker1-0/+2
2012-04-16fix broken shgetc limiter logic (wasn't working)Rich Felker2-2/+5
2012-04-16floatscan: fix incorrect count of leading nonzero digitsRich Felker1-1/+1
2012-04-14fix signedness error handling invalid multibyte sequences in regexecRich Felker1-2/+2
2012-04-13remove invalid code from TRERich Felker1-14/+0
2012-04-13fix broken regerror (typo) and missing messageRich Felker1-2/+2
2012-04-13use fast version of the int reading code for the high-order digits tooRich Felker1-3/+13
2012-04-13use macros instead of inline functions in shgetc.hRich Felker1-20/+4
2012-04-13fix spurious overflows in strtoull with small basesRich Felker1-7/+3
2012-04-12remove magic numbers from floatscanRich Felker1-5/+5
2012-04-12optimize more integer cases in floatscan; comment the whole procedureRich Felker1-8/+27
2012-04-11revert invalid optimization in floatscanRich Felker1-2/+2
2012-04-11fix stupid typo in floatscan that caused excess rounding of some valuesRich Felker1-1/+1
2012-04-11Merge remote branch 'nsz/master'Rich Felker2-5/+6
2012-04-11optimize floatscan downscaler to skip results that won't be neededRich Felker1-2/+3
2012-04-11simplify/debloat radix point alignment code in floatscanRich Felker1-9/+4
2012-04-11optimize floatscan: avoid excessive upscalingRich Felker1-27/+27
2012-04-11fix incorrect initial count in shgetc when data is already bufferedRich Felker1-1/+1
2012-04-11fix bug parsing lone zero followed by junk, and hex float over-readingRich Felker1-6/+5
2012-04-10fix float scanning of certain values ending in zerosRich Felker1-1/+3
2012-04-10fix potential overflow in exponent readingRich Felker1-1/+1
2012-04-10set errno properly when parsing floating pointRich Felker1-4/+21
2012-04-10add "scan helper getc" and rework strtod, etc. to use itRich Felker6-75/+115
2012-04-10unify strtof/strtod/strtold wrappers and fix initial whitespace issueRich Felker3-34/+21
2012-04-10new floating point parser/converterRich Felker5-94/+477
2012-04-04math: fix x86 asin accuracynsz2-5/+6
2012-04-01improve name lookup performance in corner casesRich Felker2-2/+2
2012-03-29math: minor cleanups in ceil and floornsz5-10/+7
2012-03-29math: remove x86 modf asmnsz4-111/+0
2012-03-29math: rewrite modf.c and clean up modff.cnsz2-72/+45
2012-03-28math: fix modfl.c bugnsz1-1/+1
2012-03-27math: fix a regression in powl and do some cleanupsnsz1-12/+11
2012-03-27math: add dummy tgamma and tgammaf implementationsnsz2-0/+32
2012-03-27math: remove comment about aliasing lgamma as gammansz3-8/+4
2012-03-27math: fix typo in i386 remquof and remquol asmnsz1-5/+5
2012-03-25Merge remote branch 'nsz/master'Rich Felker2-15/+6
2012-03-25add strfmon_l variant (still mostly incomplete)Rich Felker1-3/+27
2012-03-23asm for hypot and hypotfRich Felker2-0/+87
2012-03-23make dlerror conform to posixRich Felker1-6/+16