summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2013-10-29POSIX conformance fix: define struct entry in search.hSzabolcs Nagy1-8/+8
2013-10-28fenv: fix i386 fesetround for sseSzabolcs Nagy1-1/+1
2013-10-28math: extensive log*.c cleanupSzabolcs Nagy14-583/+369
2013-10-25add legacy ftime function and sys/timeb.hRich Felker1-0/+12
2013-10-23fix inet_ptonSzabolcs Nagy1-26/+19
2013-10-22fix __ipparse to parse the generic numbers-and-dots IPv4 format correctlySzabolcs Nagy1-5/+12
2013-10-22fix inet_aton to accept the generic "numbers-and-dots" IPv4 address formatSzabolcs Nagy1-1/+4
2013-10-21split inet_addr and inet_ntoa back into their own filesRich Felker3-16/+21
2013-10-19fix return value for inet_pton in ipv6 failure casesRich Felker1-6/+6
2013-10-18in faccessat slow path, add close-on-exec to pipe fdsRich Felker1-1/+1
2013-10-12fix uid/gid-setting error in faccessat with AT_EACCESS flagRich Felker1-2/+2
2013-10-08fix errno value for getcwd when size argument is zeroRich Felker1-1/+7
2013-10-07math: fix rare underflow issue in fmaSzabolcs Nagy3-13/+55
2013-10-07math: use sqrtl if FLT_EVAL_METHOD==2 in acosh and acoshfSzabolcs Nagy2-0/+13
2013-10-07remove errno setting from setenv, malloc sets it correctly on oomSzabolcs Nagy1-1/+0
2013-10-07fix allocation sizes in regcompSzabolcs Nagy1-4/+4
2013-10-07add missing va_end in execl* for correcness and static code analyzersSzabolcs Nagy3-0/+3
2013-10-07minor vfprintf and vfwprintf changes to please static code analyzersSzabolcs Nagy2-6/+11
2013-10-06math: remove an unused variable from modflSzabolcs Nagy1-1/+0
2013-10-05slightly optimize __brk for sizeRich Felker1-1/+1
2013-10-05fix failure of malloc to set errno on heap (brk) exhaustionRich Felker1-0/+1
2013-10-04fix failure to check malloc result in setenvRich Felker1-9/+9
2013-10-04math: remove code duplication in erfl found by clang analyzerSzabolcs Nagy1-13/+2
2013-10-04math: remove a useless assignment in lgammal found by clang analyzerSzabolcs Nagy1-2/+2
2013-10-04fix invalid implicit pointer conversion in pthread_key_createRich Felker1-1/+1
2013-10-04fix uninitialized variable in dladdrRich Felker1-1/+1
2013-10-04removed unused variable in vfwprintfRich Felker1-2/+1
2013-10-03fix new environment always being null with execleRich Felker1-2/+1
2013-09-29fix off-by-one error in getgrnam_r and getgrgid_r, clobbering gr_nameRich Felker1-2/+2
2013-09-27fix buffer overflow in mbsrtowcsRich Felker1-1/+1
2013-09-20fix potential deadlock bug in libc-internal locking logicRich Felker3-13/+15
2013-09-20correct the sysconf value for RTSIG_MAXRich Felker1-1/+2
2013-09-16fix sigemptyset and sigfillset for mipsRich Felker2-1/+10
2013-09-16fix clobbering of caller's stack in mips __clone functionRich Felker1-0/+3
2013-09-16omit CLONE_PARENT flag to clone in pthread_createRich Felker1-1/+1
2013-09-16use symbolic names for clone flags in pthread_createRich Felker1-2/+5
2013-09-15support configurable page size on mips, powerpc and microblazeSzabolcs Nagy12-11/+24
2013-09-14fix overflow in sysconf for _SC_MQ_PRIO_MAXRich Felker1-1/+2
2013-09-14fix child stack alignment on mips cloneRich Felker1-0/+1
2013-09-13fix x86_64 lrintl asm, againRich Felker1-2/+2
2013-09-09do not use default when dynamic linker fails to open existing path fileRich Felker1-0/+2
2013-09-06math: remove STRICT_ASSIGN from exp2f (see previous commit)Szabolcs Nagy1-1/+1
2013-09-06math: remove STRICT_ASSIGN macroSzabolcs Nagy11-23/+13
2013-09-05math: support invalid ld80 representations in fpclassifySzabolcs Nagy1-2/+4
2013-09-05math: fix atanh (overflow and underflow issues)Szabolcs Nagy3-14/+37
2013-09-05math: remove libc.h include from libm.hSzabolcs Nagy5-3/+5
2013-09-05math: fix acoshf on negative valuesSzabolcs Nagy2-7/+8
2013-09-05math: fix expm1l on x86_64 (avoid underflow for large negative x)Szabolcs Nagy3-3/+13
2013-09-05math: fix lrintl.s on x86_64 (use movslq to signextend the result)Szabolcs Nagy1-1/+1
2013-09-05math: fix exp2l asm on x86 (raise underflow correctly)Szabolcs Nagy2-67/+78