about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
* introduce new wide scanf code and remove the last remnants of old scanfRich Felker2012-04-174-524/+312
* avoid depending on POSIX symbol in code used from plain C functionsRich Felker2012-04-171-1/+3
* avoid null pointer dereference on %*p fields in scanfRich Felker2012-04-171-1/+1
* also ensure that write buffer is bounded when __stdio_write returnsRich Felker2012-04-171-0/+1
* fix buffer overflow in vfprintf on long writes to unbuffered filesRich Felker2012-04-171-1/+2
* fix %lf, etc. with printfRich Felker2012-04-161-0/+2
* better description for errno==0Rich Felker2012-04-161-1/+1
* implement wcstod and familyRich Felker2012-04-161-0/+61
* avoid hitting eof in wcstolRich Felker2012-04-161-2/+3
* use the new integer parser (FILE/shgetc based) for strtol, wcstol, etc.Rich Felker2012-04-1614-405/+120
* new scanf implementation and corresponding integer parser/converterRich Felker2012-04-166-30/+450
* fix buggy limiter handling in shgetcRich Felker2012-04-161-4/+3
* wordexp must set the we_offs entries of we_wordv to null pointersRich Felker2012-04-161-0/+4
* fix crash in wordfree if we_offs is not initialized by the callerRich Felker2012-04-161-0/+2
* fix broken shgetc limiter logic (wasn't working)Rich Felker2012-04-162-2/+5
* floatscan: fix incorrect count of leading nonzero digitsRich Felker2012-04-161-1/+1
* move F_DUPFD_CLOEXEC out of bitsRich Felker2012-04-154-6/+2
* add F_SETSIG and F_GETSIG (linux specific) to fcntl.hRich Felker2012-04-153-0/+6
* fix signedness error handling invalid multibyte sequences in regexecRich Felker2012-04-141-2/+2
* rename __sa_restorer to sa_restorer in struct sigactionRich Felker2012-04-131-1/+1
* remove invalid code from TRERich Felker2012-04-131-14/+0
* fix broken regerror (typo) and missing messageRich Felker2012-04-131-2/+2
* use fast version of the int reading code for the high-order digits tooRich Felker2012-04-131-3/+13
* use macros instead of inline functions in shgetc.hRich Felker2012-04-131-20/+4
* fix spurious overflows in strtoull with small basesRich Felker2012-04-131-7/+3
* remove magic numbers from floatscanRich Felker2012-04-121-5/+5
* optimize more integer cases in floatscan; comment the whole procedureRich Felker2012-04-121-8/+27
* revert invalid optimization in floatscanRich Felker2012-04-111-2/+2
* fix stupid typo in floatscan that caused excess rounding of some valuesRich Felker2012-04-111-1/+1
* add some more useful suggested options to config.mak templateRich Felker2012-04-111-0/+6
* Merge remote branch 'nsz/master'Rich Felker2012-04-112-5/+6
|\
| * math: fix x86 asin accuracynsz2012-04-042-5/+6
* | optimize floatscan downscaler to skip results that won't be neededRich Felker2012-04-111-2/+3
* | simplify/debloat radix point alignment code in floatscanRich Felker2012-04-111-9/+4
* | optimize floatscan: avoid excessive upscalingRich Felker2012-04-111-27/+27
* | fix incorrect initial count in shgetc when data is already bufferedRich Felker2012-04-111-1/+1
* | fix bug parsing lone zero followed by junk, and hex float over-readingRich Felker2012-04-111-6/+5
* | fix float scanning of certain values ending in zerosRich Felker2012-04-101-1/+3
* | fix potential overflow in exponent readingRich Felker2012-04-101-1/+1
* | set errno properly when parsing floating pointRich Felker2012-04-101-4/+21
* | add "scan helper getc" and rework strtod, etc. to use itRich Felker2012-04-106-75/+115
* | unify strtof/strtod/strtold wrappers and fix initial whitespace issueRich Felker2012-04-103-34/+21
* | new floating point parser/converterRich Felker2012-04-105-94/+477
* | fix alloca issue in stdlib.h tooRich Felker2012-04-091-1/+1
* | alloca cannot be a function. #define it to the gcc builtin if possibleRich Felker2012-04-091-0/+4
|/
* work around nasty gcc bug in the i386 syscall asmRich Felker2012-04-041-4/+4
* remove useless (at best, harmful) feature test checks in aio.hRich Felker2012-04-031-5/+0
* improve name lookup performance in corner casesRich Felker2012-04-012-2/+2
* optimize signbit macroRich Felker2012-03-301-2/+2
* make math.h more c++-friendlyRich Felker2012-03-301-2/+5