about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
...
* reorder exit code to defer stdio flush until after dtorsRich Felker2012-06-141-4/+1
* revert one change in time.h; no evidence BSD_SOURCE should expose these..Rich Felker2012-06-131-1/+1
* fix feature test macros in time.hRich Felker2012-06-131-5/+2
* add timegm function (inverse of gmtime), nonstandardRich Felker2012-06-132-0/+12
* add init_module/delete_module syscall wrappersRich Felker2012-06-131-0/+11
* add (currently stubbed due to stubbed strverscmp) versionsort functionRich Felker2012-06-132-0/+13
* add deprecated capabilities functionsRich Felker2012-06-131-0/+11
* fix char signedness bug (arm-specific) in dynamic linkerRich Felker2012-06-091-1/+1
* add pthread_attr_setstack interface (and get)Rich Felker2012-06-094-10/+39
* fix scanning of "-0x" pseudo-hex float (must give negative zero)Rich Felker2012-06-081-1/+1
* fix signedness errors in stdint.h constant macrosRich Felker2012-06-081-2/+2
* fix %ls breakage in last printf fixRich Felker2012-06-081-2/+2
* fix printf %ls with precision limit over-read issueRich Felker2012-06-081-2/+2
* fix sysinfo, try 2. it seems to work this time.Rich Felker2012-06-071-10/+10
* sysinfo struct was utter nonsense; no idea where it came from.Rich Felker2012-06-071-4/+3
* fix scanf bug reading literals after width-limited fieldRich Felker2012-06-071-0/+1
* check for ld support of -Bsymbolic-functions; disable shared if not availRich Felker2012-06-071-0/+7
* use -nostdlib in linker tests to avoid possible missing crt/lib issuesRich Felker2012-06-071-1/+1
* avoid linking main program in linker testsRich Felker2012-06-071-2/+2
* make configure try to disable stack protectorRich Felker2012-06-061-0/+2
* add configure check for gnu linker hash style settingRich Felker2012-06-061-1/+20
* make gcc wrapper rewrite link options rather than just extending themRich Felker2012-06-061-3/+1
* treat failure of mprotect in map_library as a fatal load failureRich Felker2012-06-061-9/+9
* fix ctype abi junk (pointer should point to 0 slot, not -128 slot)Rich Felker2012-06-053-3/+3
* _GNU_SOURCE is supposed to imply _LARGEFILE64_SOURCERich Felker2012-06-0415-15/+15
* release notes for 0.9.1 v0.9.1Rich Felker2012-06-031-0/+34
* fix configure build/host/target terminology usageRich Felker2012-06-031-13/+14
* ensure that abort always worksRich Felker2012-06-021-0/+2
* add some ugly aliases for LSB ABI compatibilityRich Felker2012-06-027-0/+8
* increase default thread stack size to 80kRich Felker2012-06-021-1/+1
* remove implementation-reserved bits when saving signal maskRich Felker2012-06-021-1/+11
* remove no-longer-needed unblocking of signals in pthread_createRich Felker2012-06-021-1/+0
* add LSB abi junk for ctype functionsRich Felker2012-06-023-0/+104
* declare environ in unistd.h when _GNU_SOURCE feature test macro is usedRich Felker2012-06-021-0/+1
* use fistpll mnemonic instead of fistpq (more widely supported) on x86_64 tooRich Felker2012-06-021-1/+1
* add LSB ABI __xstat, etc. junkRich Felker2012-05-314-0/+36
* enable LARGEFILE64 aliasesRich Felker2012-05-312-4/+1
* fix musl-gcc wrapper to work with -pieRich Felker2012-05-301-1/+1
* there is no such GNU function fpurge, only __fpurge.Rich Felker2012-05-281-1/+0
* add prototype for BSD/GNU stdio *_unlocked extension functionsRich Felker2012-05-281-2/+12
* remove duplicate lfs64 cruft in stdio.hRich Felker2012-05-281-2/+0
* math: fix nextafter definition in tgmath.hnsz2012-05-281-1/+1
* add ldd and main program loading support to dynamic linkerRich Felker2012-05-274-21/+89
* cleanup dynamic linker start code cruftRich Felker2012-05-273-13/+6
* fix overrun (n essentially ignored) in wcsncmpRich Felker2012-05-261-1/+1
* fix failure of mbsinit(0) (not UB; required to return nonzero)Rich Felker2012-05-261-1/+1
* fix failure of strrchr(str, 0)Rich Felker2012-05-261-1/+1
* avoid using pthread cleanup push/pop in stdio when not neededRich Felker2012-05-252-6/+14
* ensure pthread-internal signals are unblocked before threads are usedRich Felker2012-05-251-0/+1
* fix regex on armRich Felker2012-05-251-1/+1