about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* math: minor cleanups in ceil and floornsz2012-03-295-10/+7
* math: remove x86 modf asmnsz2012-03-294-111/+0
* math: rewrite modf.c and clean up modff.cnsz2012-03-292-72/+45
* math: fix modfl.c bugnsz2012-03-281-1/+1
* math: fix a regression in powl and do some cleanupsnsz2012-03-271-12/+11
* math: add dummy tgamma and tgammaf implementationsnsz2012-03-272-0/+32
* math: remove comment about aliasing lgamma as gammansz2012-03-273-8/+4