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