summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorLines
2013-10-07remove errno setting from setenv, malloc sets it correctly on oomSzabolcs Nagy-1/+0
2013-10-07fix allocation sizes in regcompSzabolcs Nagy-4/+4
2013-10-07add missing va_end in execl* for correcness and static code analyzersSzabolcs Nagy-0/+3
2013-10-07minor vfprintf and vfwprintf changes to please static code analyzersSzabolcs Nagy-6/+11
2013-10-06math: remove an unused variable from modflSzabolcs Nagy-1/+0
2013-10-05slightly optimize __brk for sizeRich Felker-1/+1
2013-10-05fix failure of malloc to set errno on heap (brk) exhaustionRich Felker-0/+1
2013-10-04fix failure to check malloc result in setenvRich Felker-9/+9
2013-10-04math: remove code duplication in erfl found by clang analyzerSzabolcs Nagy-13/+2
2013-10-04math: remove a useless assignment in lgammal found by clang analyzerSzabolcs Nagy-2/+2
2013-10-04fix invalid implicit pointer conversion in pthread_key_createRich Felker-1/+1
2013-10-04fix uninitialized variable in dladdrRich Felker-1/+1
2013-10-04removed unused variable in vfwprintfRich Felker-2/+1
2013-10-03fix new environment always being null with execleRich Felker-2/+1
2013-09-29fix off-by-one error in getgrnam_r and getgrgid_r, clobbering gr_nameRich Felker-2/+2
2013-09-27fix buffer overflow in mbsrtowcsRich Felker-1/+1
2013-09-20fix potential deadlock bug in libc-internal locking logicRich Felker-13/+15
2013-09-20correct the sysconf value for RTSIG_MAXRich Felker-1/+2
2013-09-16fix sigemptyset and sigfillset for mipsRich Felker-1/+10
2013-09-16fix clobbering of caller's stack in mips __clone functionRich Felker-0/+3
2013-09-16omit CLONE_PARENT flag to clone in pthread_createRich Felker-1/+1
2013-09-16use symbolic names for clone flags in pthread_createRich Felker-2/+5
2013-09-15support configurable page size on mips, powerpc and microblazeSzabolcs Nagy-11/+24
2013-09-14fix overflow in sysconf for _SC_MQ_PRIO_MAXRich Felker-1/+2
2013-09-14fix child stack alignment on mips cloneRich Felker-0/+1
2013-09-13fix x86_64 lrintl asm, againRich Felker-2/+2
2013-09-09do not use default when dynamic linker fails to open existing path fileRich Felker-0/+2
2013-09-06math: remove STRICT_ASSIGN from exp2f (see previous commit)Szabolcs Nagy-1/+1
2013-09-06math: remove STRICT_ASSIGN macroSzabolcs Nagy-23/+13
2013-09-05math: support invalid ld80 representations in fpclassifySzabolcs Nagy-2/+4
2013-09-05math: fix atanh (overflow and underflow issues)Szabolcs Nagy-14/+37
2013-09-05math: remove libc.h include from libm.hSzabolcs Nagy-3/+5
2013-09-05math: fix acoshf on negative valuesSzabolcs Nagy-7/+8
2013-09-05math: fix expm1l on x86_64 (avoid underflow for large negative x)Szabolcs Nagy-3/+13
2013-09-05math: fix lrintl.s on x86_64 (use movslq to signextend the result)Szabolcs Nagy-1/+1
2013-09-05math: fix exp2l asm on x86 (raise underflow correctly)Szabolcs Nagy-67/+78
2013-09-05math: cosmetic cleanup (use explicit union instead of fshape and dshape)Szabolcs Nagy-166/+140
2013-09-05math: remove *_WORD64 macros from libm.hSzabolcs Nagy-29/+13
2013-09-05math: remove old longdbl.hSzabolcs Nagy-113/+0
2013-09-05math: long double fix (use ldshape union)Szabolcs Nagy-51/+24
2013-09-05math: use float_t and double_t in scalbnf and scalbnSzabolcs Nagy-16/+20
2013-09-05math: fix remaining old long double code (erfl, fmal, lgammal, scalbnl)Szabolcs Nagy-93/+65
2013-09-05math: cbrt cleanup and long double fixSzabolcs Nagy-72/+59
2013-09-05math: fix underflow in exp*.c and long double handling in exp2lSzabolcs Nagy-182/+139
2013-09-05math: long double trigonometric cleanup (cosl, sinl, sincosl, tanl)Szabolcs Nagy-236/+228
2013-09-05math: long double inverse trigonometric cleanup (acosl, asinl, atanl, atan2l)Szabolcs Nagy-103/+180
2013-09-05math: rewrite hypotSzabolcs Nagy-324/+135
2013-09-05math: rewrite remainder functions (remainder, remquo, fmod, modf)Szabolcs Nagy-1010/+472
2013-09-05math: rewrite rounding functions (ceil, floor, trunc, round, rint)Szabolcs Nagy-905/+274
2013-09-05math: fix logb(-0.0) in downward rounding modeSzabolcs Nagy-6/+6