about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
* release notes for 0.8.9 (bugfix release) v0.8.9Rich Felker2012-04-191-0/+11
* further fixes to leading space issue (forgot the wide versions)Rich Felker2012-04-192-5/+9
* fix really bad breakage in strtol, etc.: failure to accept leading spacesRich Felker2012-04-195-10/+9
* fix header typoRich Felker2012-04-181-1/+1
* legacy junk compatibility grab-bagRich Felker2012-04-186-7/+36
* fix incorrect macro name for MATH_ERREXCEPT in math.hRich Felker2012-04-181-1/+1
* release notes for 0.8.8 v0.8.8Rich Felker2012-04-181-0/+34
* fix typo in exponent reading code or floatsRich Felker2012-04-181-1/+1
* fix wide scanf's handling of input failure on %c, and simplify %[Rich Felker2012-04-171-5/+6
* fix failure to distinguish input/match failure in wide %[ scanfRich Felker2012-04-172-2/+4
* fix over-read in %ls with non-wide scanfRich Felker2012-04-171-0/+1
* fix broken %s and %[ with no width specifier in wide scanfRich Felker2012-04-171-3/+7
* fix failure to read infinity in scanfRich Felker2012-04-171-3/+4
* fix failure of int parser to unget an initial mismatching characterRich Felker2012-04-171-0/+1
* make wide scanf %[ respect widthRich Felker2012-04-171-2/+3
* fix wide scanf to respect field width for stringsRich Felker2012-04-171-4/+7
* fix some bugs in scanf %[ handling detected while writing the wide versionRich Felker2012-04-171-4/+4
* 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