summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorLines
2013-09-05math: ilogb cleanupSzabolcs Nagy-16/+43
2013-09-05long double cleanup, initial commitSzabolcs Nagy-96/+89
2013-09-04fix typo in comment in __randnameRich Felker-1/+1
2013-09-02fix mips-specific bug in synccall (too little space for signal mask)Rich Felker-5/+3
2013-09-02in synccall, ignore the signal before any threads' signal handlers returnRich Felker-4/+4
2013-09-02fix invalid pointer in synccall (multithread setuid, etc.)Rich Felker-0/+1
2013-09-01fix special-case breakage in popen due to reversed argument orderRich Felker-1/+1
2013-08-31fix missing return value warning in faccessat, minor cleanupRich Felker-1/+1
2013-08-31fix invalid %m format crash in wide scanf variantsRich Felker-0/+2
2013-08-31avoid crash in scanf when invalid %m format is encounteredRich Felker-0/+2
2013-08-31remove incorrect cancellation points from realpathRich Felker-4/+4
2013-08-31debloat realpath's allocation strategyRich Felker-12/+6
2013-08-31make realpath use O_PATH when opening the fileRich Felker-1/+1
2013-08-31fix breakage in synccall due to incorrect signal restoration in sigqueueRich Felker-2/+3
2013-08-28optimized C memcpyRich Felker-16/+111
2013-08-27fix invalid instruction mnemonics in powerpc fenv asmRich Felker-3/+3
2013-08-27optimized C memsetRich Felker-12/+77
2013-08-25add the %s (seconds since the epoch) format to strftimeRich Felker-0/+4
2013-08-24fix strftime regression in %e formatRich Felker-2/+2
2013-08-24properly fill in tzname[] for old (pre-64-bit-format) zoneinfo filesRich Felker-1/+22
2013-08-24minor fix to tz name checkingRich Felker-2/+2
2013-08-24fix strftime handling of time zone dataRich Felker-8/+36
2013-08-23make dlopen honor the rpath of the main programRich Felker-1/+1
2013-08-23fix mishandling of empty or blank TZ environment variableRich Felker-1/+1
2013-08-23fix regression in dn_expand/reverse dnsRich Felker-1/+1
2013-08-23fix bugs in $ORIGIN handlingRich Felker-3/+9
2013-08-23use AT_EXECFN, if available, for dynamic linker to identify main programRich Felker-1/+5
2013-08-23add rpath $ORIGIN processing to dynamic linkerRich Felker-3/+59
2013-08-23add recursive rpath support to dynamic linkerRich Felker-12/+13
2013-08-23fix missing string.h in strftime.c (needed by new strftime code)Rich Felker-0/+1
2013-08-22add strftime and wcsftime field widthsRich Felker-24/+81
2013-08-22simplify strftime and fix integer overflowsRich Felker-28/+12
2013-08-22strftime cleanup: avoid recomputing strlen when it's knownRich Felker-10/+16
2013-08-22more strftime refactoringRich Felker-23/+25
2013-08-22begin refactoring strftime to make adding field widths easierRich Felker-151/+161
2013-08-21unbreak vwarn: print ": " before errno messageRich Felker-2/+5
2013-08-18fix fenv exception functions to mask their argumentSzabolcs Nagy-18/+55
2013-08-18optimize x86 feclearexcept: only use save/restore x87 fenv if neededSzabolcs Nagy-27/+38
2013-08-18add sse fenv support on i386 through hwcapSzabolcs Nagy-9/+61
2013-08-18fix i386 fesetenv: FE_DFL_ENV is (fenv_t*)-1 not 0Szabolcs Nagy-2/+2
2013-08-17remove spurious tmp file present since initial git check-inRich Felker-390/+0
2013-08-17add hkscs/big5-2003/eten extensions to iconv big5Rich Felker-977/+1433
2013-08-16some initial math asm for armhf (fabs[f] and sqrt[f])Rich Felker-0/+32
2013-08-16support floating point environment (fenv) on armhf (hard float) subarchsRich Felker-0/+62
2013-08-16fix build of x86_64 expl assemblyRich Felker-1/+1
2013-08-15math: fix pow(x,-1) to raise underflow properlySzabolcs Nagy-2/+14
2013-08-15math: fix i386 atan2.s to raise underflow for subnormal resultsSzabolcs Nagy-2/+24
2013-08-15math: clean up atan2.cSzabolcs Nagy-103/+73
2013-08-15math: fix x86 asin, atan, exp, log1p to raise underflowSzabolcs Nagy-3/+98
2013-08-15math: fix x86 expl.s to raise underflow and clean up special case handlingSzabolcs Nagy-45/+31