1. 67b25fe move F_DUPFD_CLOEXEC out of bits by Rich Felker · 12 years ago
  2. a68af22 add F_SETSIG and F_GETSIG (linux specific) to fcntl.h by Rich Felker · 12 years ago
  3. b9dd43d fix signedness error handling invalid multibyte sequences in regexec by Rich Felker · 12 years ago
  4. 0115a6e rename __sa_restorer to sa_restorer in struct sigaction by Rich Felker · 12 years ago
  5. 386b34a remove invalid code from TRE by Rich Felker · 12 years ago
  6. b6dbdc6 fix broken regerror (typo) and missing message by Rich Felker · 12 years ago
  7. 11f3e33 use fast version of the int reading code for the high-order digits too by Rich Felker · 12 years ago
  8. 26832d0 use macros instead of inline functions in shgetc.h by Rich Felker · 12 years ago
  9. 54222d1 fix spurious overflows in strtoull with small bases by Rich Felker · 12 years ago
  10. 3ddeedd remove magic numbers from floatscan by Rich Felker · 12 years ago
  11. fe51495 optimize more integer cases in floatscan; comment the whole procedure by Rich Felker · 12 years ago
  12. 470fecd revert invalid optimization in floatscan by Rich Felker · 12 years ago
  13. 96acdae fix stupid typo in floatscan that caused excess rounding of some values by Rich Felker · 12 years ago
  14. 5595de6 add some more useful suggested options to config.mak template by Rich Felker · 12 years ago
  15. cc00f05 Merge remote branch 'nsz/master' by Rich Felker · 12 years ago
  16. 4054da9 optimize floatscan downscaler to skip results that won't be needed by Rich Felker · 12 years ago
  17. 5837a0b simplify/debloat radix point alignment code in floatscan by Rich Felker · 12 years ago
  18. 1bdd5c8 optimize floatscan: avoid excessive upscaling by Rich Felker · 12 years ago
  19. 7ef1a9b fix incorrect initial count in shgetc when data is already buffered by Rich Felker · 12 years ago
  20. 48bb81a fix bug parsing lone zero followed by junk, and hex float over-reading by Rich Felker · 12 years ago
  21. 38b3f1f fix float scanning of certain values ending in zeros by Rich Felker · 12 years ago
  22. 633a26c fix potential overflow in exponent reading by Rich Felker · 12 years ago
  23. c5ff296 set errno properly when parsing floating point by Rich Felker · 12 years ago
  24. 2162541 add "scan helper getc" and rework strtod, etc. to use it by Rich Felker · 12 years ago
  25. 4fb6aa0 unify strtof/strtod/strtold wrappers and fix initial whitespace issue by Rich Felker · 12 years ago
  26. 415c4cd new floating point parser/converter by Rich Felker · 12 years ago
  27. 3be616c fix alloca issue in stdlib.h too by Rich Felker · 12 years ago
  28. d71d080 alloca cannot be a function. #define it to the gcc builtin if possible by Rich Felker · 12 years ago
  29. 37eaec3 math: fix x86 asin accuracy by nsz · 12 years ago
  30. 5bd0ab8 work around nasty gcc bug in the i386 syscall asm by Rich Felker · 12 years ago
  31. 450f2c4 remove useless (at best, harmful) feature test checks in aio.h by Rich Felker · 12 years ago
  32. 4f346b0 improve name lookup performance in corner cases by Rich Felker · 12 years ago
  33. 4dbd941 optimize signbit macro by Rich Felker · 12 years ago
  34. 93a18a1 make math.h more c++-friendly by Rich Felker · 12 years ago
  35. 7eabe8e math: minor cleanups in ceil and floor by nsz · 12 years ago
  36. d79ac8c math: remove x86 modf asm by nsz · 12 years ago
  37. f6ceccd math: rewrite modf.c and clean up modff.c by nsz · 12 years ago
  38. 9f58d06 math: fix modfl.c bug by nsz · 12 years ago
  39. cf68207 math: fix a regression in powl and do some cleanups by nsz · 12 years ago
  40. bbfbc7e math: add dummy tgamma and tgammaf implementations by nsz · 12 years ago
  41. 1b229a2 math: remove comment about aliasing lgamma as gamma by nsz · 12 years ago
  42. ad23771 math: fix typo in i386 remquof and remquol asm by nsz · 12 years ago
  43. e68a463 Merge branch 'master' of git://git.etalabs.net/musl by nsz · 12 years ago
  44. a9014ac Merge remote branch 'nsz/master' by Rich Felker · 12 years ago
  45. bff650d add strfmon_l variant (still mostly incomplete) by Rich Felker · 12 years ago
  46. df82f8f update COPYRIGHT status of TRE regex code by Rich Felker · 12 years ago
  47. db0da51 update README to remove information no longer relevant as of 0.8.7 by Rich Felker · 12 years ago
  48. c5ec5b2 Merge branch 'master' of git://git.etalabs.net/musl by nsz · 12 years ago
  49. ad2d2b9 asm for hypot and hypotf by Rich Felker · 12 years ago
  50. a9e85c0 make dlerror conform to posix by Rich Felker · 12 years ago
  51. 6d8df2b minor rintl.c fix: remove unsupported ldbl format message by nsz · 12 years ago
  52. cb8fce4 fix tgammal: don't set the signgam global by nsz · 12 years ago
  53. 494ba80 simplify creal and cimag macros by Rich Felker · 12 years ago
  54. 13e400b add creal/cimag macros in complex.h (and use them in the functions defs) by Rich Felker · 12 years ago
  55. 132f0a0 tgmath.h: suppress any existing macro definitions before defining macros by Rich Felker · 12 years ago
  56. a4a0c91 acos.s fix: use the formula acos(x) = atan2(sqrt(1-x),sqrt(1+x)) by nsz · 12 years ago
  57. 2e0c1fe sysconf support for dynamic limits (open files and processes) by Rich Felker · 12 years ago
  58. 47db890 fix DECIMAL_DIG definitions by Rich Felker · 12 years ago
  59. 25501c1 initial, very primitive strfmon by Rich Felker · 12 years ago
  60. 30df206 x86_64 math asm, long double functions only by Rich Felker · 12 years ago
  61. 80949cc limits.h: support gcc's -funsigned-char by Rich Felker · 12 years ago
  62. 58bf748 Merge remote branch 'nsz/master' by Rich Felker · 12 years ago
  63. ad47d45 upgrade to latest upstream TRE regex code (0.8.0) by Rich Felker · 12 years ago
  64. 91c28f6 nearbyint optimization (only clear inexact when necessary) by nsz · 12 years ago
  65. 8c6fc86 remove a fixme comment by nsz · 12 years ago
  66. f1347a3 clean up pow.c and powf.c fix comments about special cases by nsz · 12 years ago
  67. 615bbd3 clean up powl.c fix special cases, use multiplication instead of scalbnl by nsz · 12 years ago
  68. 1e2fea6 fix a cbrtl.c regression and remove x87 precision setting by nsz · 12 years ago
  69. 03c52e1 Merge branch 'master' of git://git.etalabs.net/musl by nsz · 12 years ago
  70. baa43bc optimize scalbn family by Rich Felker · 12 years ago
  71. 7513d3e remquo asm: return quotient mod 8, as intended by the spec by Rich Felker · 12 years ago
  72. c879a95 Merge branch 'master' of git://git.etalabs.net/musl by nsz · 12 years ago
  73. 804fbf0 use alternate formula for acos asm to avoid loss of precision by Rich Felker · 12 years ago
  74. 0b0735a Merge branch 'master' of git://git.etalabs.net/musl by nsz · 12 years ago
  75. 97721a5 Merge remote branch 'nsz/master' by Rich Felker · 12 years ago
  76. acb7449 fix exp asm by Rich Felker · 12 years ago
  77. 634c3a6 Merge branch 'master' of git://git.etalabs.net/musl by nsz · 12 years ago
  78. 0cbb654 code cleanup of named constants by nsz · 12 years ago
  79. b03255a fix remainder*.c: remove useless long double cast by nsz · 12 years ago
  80. 4caa17b don't try to create non-standard denormalization signal by nsz · 12 years ago
  81. 0108420 Merge remote branch 'nsz/master' by Rich Felker · 12 years ago
  82. 7548349 new modff.c code, fix nan handling in modfl by nsz · 12 years ago
  83. 2786c7d use scalbn or *2.0 instead of ldexp, fix fmal by nsz · 12 years ago
  84. 01fdfd4 fix long double const workaround in cbrtl by nsz · 12 years ago
  85. 2e8c8fb don't inline __rem_pio2l so the code size is smaller by nsz · 12 years ago
  86. c3587ef minor fix in __tanl (get sign properly) by nsz · 12 years ago
  87. d9c1d72 bug fix: wrong opcode for writing long long by Rich Felker · 12 years ago
  88. eca1c35 remove long double const workarounds by nsz · 12 years ago
  89. 9a810cb fix erfl wrapper for long double==double case by nsz · 12 years ago
  90. b04b588 asm for log1p by Rich Felker · 12 years ago
  91. 9d82a15 asm for log2 by Rich Felker · 12 years ago
  92. 27deb53 asm for remquo by Rich Felker · 12 years ago
  93. 02db27d optimize exponential asm for i386 by Rich Felker · 12 years ago
  94. da7458a Merge remote branch 'nsz/master' by Rich Felker · 12 years ago
  95. be5b01f fix broken modf family functions by Rich Felker · 12 years ago
  96. 1bf4dad asm for modf functions by Rich Felker · 12 years ago
  97. 8051e08 simplify scalbn*.c implementations by nsz · 12 years ago
  98. f767aba Merge branch 'master' of git://git.etalabs.net/musl by nsz · 12 years ago
  99. 0b70a1e asm for floor/ceil/trunc by Rich Felker · 12 years ago
  100. 9322344 Merge branch 'master' of git://git.etalabs.net/musl by nsz · 12 years ago