summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker164-198/+199
2012-09-06remove dependency of wmemmove on wmemcpy directionRich Felker1-4/+4
2012-09-06remove dependency of memmove on memcpy directionRich Felker1-5/+4
2012-09-06fix broken ttyname[_r] (failure to null-terminate result)Rich Felker1-1/+4
2012-08-30fix missing statics in crypt_sha256 codeRich Felker1-3/+3
2012-08-29anti-DoS rounds count limits for blowfish and des cryptRich Felker2-2/+2
2012-08-29limit sha512 rounds to similar runtime to sha256 limitRich Felker1-1/+1
2012-08-29add sha256/sha512 cryptRich Felker4-1/+700
2012-08-27fix bug caused by main app & libc having map set; cannot free themRich Felker1-1/+1
2012-08-26dladdr support for dynamic linker (nonstandard extension)Rich Felker2-0/+95
2012-08-25implement "low hanging fruit" from C11Rich Felker4-49/+57
2012-08-25add c11 quick_exit and at_quick_exit functionsRich Felker2-0/+44
2012-08-25fix bug in gnu hash lookup on dlsym(handle, name) lookupsRich Felker1-1/+1
2012-08-25clean up search_vec usage for vdsoRich Felker1-2/+2
2012-08-25use new search_vec function to find vdso in dynamic linkerRich Felker1-4/+2
2012-08-25ensure canary is setup if stack-prot libs are dlopen'd into non-ssp appRich Felker2-2/+6
2012-08-25add gnu hash support in the dynamic linkerRich Felker1-12/+85
2012-08-23optimize legacy ffs functionRich Felker1-4/+2
2012-08-19fix bug whereby most atexit-registered functions got skippedRich Felker1-3/+2
2012-08-18make dynamic linker report all failures before exitingRich Felker1-2/+6
2012-08-17fix bug computing argc when invoking ld-musl-mips.so.1 progname ...Rich Felker1-3/+3
2012-08-17fix extremely rare but dangerous race condition in robust mutexesRich Felker3-20/+33
2012-08-17fix float parsing logic for long decimal expansionsRich Felker1-1/+1
2012-08-15handle null arguments to legacy bsd err.h functionsRich Felker1-2/+2
2012-08-15add missing xattr functionsRich Felker1-0/+15
2012-08-13Merge remote-tracking branch 'nsz/exp'Rich Felker2-40/+35
2012-08-13remove significandlRich Felker1-7/+0
2012-08-13add significand[fl] math functionsRich Felker3-0/+21
2012-08-11memcpy asm for i386 and x86_64Rich Felker2-0/+51
2012-08-11remove unused but buggy code from strstr.cRich Felker1-10/+0
2012-08-11remove buggy short-string wcsstr implementation; always use twowayRich Felker1-9/+0
2012-08-11add bsd fgetln functionRich Felker3-1/+21
2012-08-10minor but worthwhile optimization in printf: avoid expensive strspnRich Felker1-4/+2
2012-08-10trivial optimization to printf: avoid wasted call frameRich Felker1-1/+1
2012-08-10add blowfish hash support to cryptRich Felker3-8/+806
2012-08-09fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker14-20/+31
2012-08-09make crypt return an unmatchable hash rather than NULL on failureRich Felker1-5/+2
2012-08-08math: fix exp.s on i386 and x86_64 so the exception flags are correctnsz2-40/+35
2012-08-07fix bug dlsym bug that slipped in during dynamic linker cleanupRich Felker1-1/+1
2012-08-05dlsym RTLD_NEXT support for mipsRich Felker1-0/+15
2012-08-05more changes that were lost when committing mips dynamic linkerRich Felker1-0/+4
2012-08-05fix change lost in the process of integrating mips dynamic linkerRich Felker1-2/+2
2012-08-05mips dynamic linker supportRich Felker2-0/+49
2012-08-05more cleanup of dynamic linker internalsRich Felker1-8/+9
2012-08-05more dynamic linker internals cleanupRich Felker1-6/+6
2012-08-05dynamic linker internals cleanupRich Felker1-5/+7
2012-08-05floating point support for arm setjmp/longjmpRich Felker2-2/+54
2012-08-02fix argument type error on wcwidth functionRich Felker1-2/+2
2012-08-02fix missing static in getusershell (namespace pollution)Rich Felker1-1/+1
2012-07-31optimize mempcpy to minimize need for data saved across the callRich Felker1-2/+1