Age | Commit message (Expand) | Author | Files | Lines |
2012-04-23 | fix spurious punct class for some surrogate codepoints (invalid) | Rich Felker | 1 | -59/+56 |
2012-04-23 | destubify iswalpha and update iswpunct to unicode 6.1 | Rich Felker | 5 | -135/+252 |
2012-04-23 | make dlerror produce informative results | Rich Felker | 1 | -4/+15 |
2012-04-22 | implement getusershell, etc. legacy functions | Rich Felker | 2 | -0/+36 |
2012-04-22 | getdtablesize is not standard; move it to its correct spot in unistd.h | Rich Felker | 1 | -1/+1 |
2012-04-22 | new gcc wrapper, entirely specfile based | Rich Felker | 4 | -63/+47 |
2012-04-22 | remove redundant (unmaintained) check in floatscan | Rich Felker | 1 | -3/+3 |
2012-04-22 | fix breakage in endian.h | Rich Felker | 1 | -1/+1 |
2012-04-22 | add some ugly byte swapping cruft in endian.h | Rich Felker | 1 | -0/+59 |
2012-04-22 | add getresuid and getresgid syscall wrappers | Rich Felker | 3 | -0/+18 |
2012-04-21 | fix major breakage in iconv, bogus rejecting of dest charsets | Rich Felker | 1 | -1/+1 |
2012-04-21 | make floatscan correctly set errno for overflow/underflow | Rich Felker | 1 | -4/+16 |
2012-04-21 | skip leading zeros even after decimal point in floatscan | Rich Felker | 1 | -4/+9 |
2012-04-21 | fix overread (consuming an extra byte) scanning NAN | Rich Felker | 1 | -1/+1 |
2012-04-21 | fix broken sysconf when correct value is -1 | Rich Felker | 1 | -1/+1 |
2012-04-19 | release notes for 0.8.9 (bugfix release)v0.8.9 | Rich Felker | 1 | -0/+11 |
2012-04-19 | further fixes to leading space issue (forgot the wide versions) | Rich Felker | 2 | -5/+9 |
2012-04-19 | fix really bad breakage in strtol, etc.: failure to accept leading spaces | Rich Felker | 5 | -10/+9 |
2012-04-18 | fix header typo | Rich Felker | 1 | -1/+1 |
2012-04-18 | legacy junk compatibility grab-bag | Rich Felker | 6 | -7/+36 |
2012-04-18 | fix incorrect macro name for MATH_ERREXCEPT in math.h | Rich Felker | 1 | -1/+1 |
2012-04-18 | release notes for 0.8.8v0.8.8 | Rich Felker | 1 | -0/+34 |
2012-04-18 | fix typo in exponent reading code or floats | Rich Felker | 1 | -1/+1 |
2012-04-17 | fix wide scanf's handling of input failure on %c, and simplify %[ | Rich Felker | 1 | -5/+6 |
2012-04-17 | fix failure to distinguish input/match failure in wide %[ scanf | Rich Felker | 2 | -2/+4 |
2012-04-17 | fix over-read in %ls with non-wide scanf | Rich Felker | 1 | -0/+1 |
2012-04-17 | fix broken %s and %[ with no width specifier in wide scanf | Rich Felker | 1 | -3/+7 |
2012-04-17 | fix failure to read infinity in scanf | Rich Felker | 1 | -3/+4 |
2012-04-17 | fix failure of int parser to unget an initial mismatching character | Rich Felker | 1 | -0/+1 |
2012-04-17 | make wide scanf %[ respect width | Rich Felker | 1 | -2/+3 |
2012-04-17 | fix wide scanf to respect field width for strings | Rich Felker | 1 | -4/+7 |
2012-04-17 | fix some bugs in scanf %[ handling detected while writing the wide version | Rich Felker | 1 | -4/+4 |
2012-04-17 | introduce new wide scanf code and remove the last remnants of old scanf | Rich Felker | 4 | -524/+312 |
2012-04-17 | avoid depending on POSIX symbol in code used from plain C functions | Rich Felker | 1 | -1/+3 |
2012-04-17 | avoid null pointer dereference on %*p fields in scanf | Rich Felker | 1 | -1/+1 |
2012-04-17 | also ensure that write buffer is bounded when __stdio_write returns | Rich Felker | 1 | -0/+1 |
2012-04-17 | fix buffer overflow in vfprintf on long writes to unbuffered files | Rich Felker | 1 | -1/+2 |
2012-04-16 | fix %lf, etc. with printf | Rich Felker | 1 | -0/+2 |
2012-04-16 | better description for errno==0 | Rich Felker | 1 | -1/+1 |
2012-04-16 | implement wcstod and family | Rich Felker | 1 | -0/+61 |
2012-04-16 | avoid hitting eof in wcstol | Rich Felker | 1 | -2/+3 |
2012-04-16 | use the new integer parser (FILE/shgetc based) for strtol, wcstol, etc. | Rich Felker | 14 | -405/+120 |
2012-04-16 | new scanf implementation and corresponding integer parser/converter | Rich Felker | 6 | -30/+450 |
2012-04-16 | fix buggy limiter handling in shgetc | Rich Felker | 1 | -4/+3 |
2012-04-16 | wordexp must set the we_offs entries of we_wordv to null pointers | Rich Felker | 1 | -0/+4 |
2012-04-16 | fix crash in wordfree if we_offs is not initialized by the caller | Rich Felker | 1 | -0/+2 |
2012-04-16 | fix broken shgetc limiter logic (wasn't working) | Rich Felker | 2 | -2/+5 |
2012-04-16 | floatscan: fix incorrect count of leading nonzero digits | Rich Felker | 1 | -1/+1 |
2012-04-15 | move F_DUPFD_CLOEXEC out of bits | Rich Felker | 4 | -6/+2 |
2012-04-15 | add F_SETSIG and F_GETSIG (linux specific) to fcntl.h | Rich Felker | 3 | -0/+6 |