Age | Commit message (Expand) | Author | Lines |
2013-06-26 | fix iconv conversion to legacy 8bit codepages | Rich Felker | -2/+2 |
2013-06-26 | remove useless conditional before free from dynamic linker path code | Rich Felker | -1/+1 |
2013-06-26 | fix dynamic linker handling of empty path file or error reading path file | Rich Felker | -4/+3 |
2013-06-25 | respect iso c namespace in stdio.h and wchar.h regarding va_list | Rich Felker | -17/+26 |
2013-06-25 | make newline-delimited dynamic linker path file actually work | Rich Felker | -1/+1 |
2013-06-25 | implement inet_lnaof, inet_netof, and inet_makeaddr | Rich Felker | -40/+59 |
2013-06-25 | add ether_aton[_r] and ether_ntoa[_r] functions | Rich Felker | -0/+57 |
2013-06-22 | fix scanf %c conversion wrongly storing a terminating null byte | Rich Felker | -4/+8 |
2013-06-22 | fix major scanf breakage with unbuffered streams, fmemopen, etc. | Rich Felker | -0/+1 |
2013-06-16 | fix invalid access in aio notification | Rich Felker | -1/+1 |
2013-06-16 | fix uninitialized variable in lio (aio) code | Rich Felker | -1/+1 |
2013-06-12 | improve the quality of output from rand_r | Rich Felker | -1/+10 |
2013-06-08 | add clock id macros for a number of new(ish) Linux-specific clocks | Rich Felker | -0/+6 |
2013-06-08 | fix the type of CLOCKS_PER_SEC to match new clock_t type | Rich Felker | -1/+1 |
2013-06-08 | support cputime clocks for processes/threads other than self | Rich Felker | -3/+7 |
2013-06-08 | prng: make rand_r have 2^32 period instead of 2^31 | Szabolcs Nagy | -2/+2 |
2013-06-08 | prng: fix rand() to give good sequence with small state | Szabolcs Nagy | -2/+4 |
2013-06-07 | fix mixup in previous change to gcc wrapper | Rich Felker | -1/+1 |
2013-06-07 | make gcc-specific headers (intrinsics, etc.) available with wrapper | Rich Felker | -2/+2 |
2013-06-07 | improve handling of nonstandard fields in struct tm | Rich Felker | -4/+5 |
2013-06-06 | implement 'm' modifier for wide scanf variants | Rich Felker | -7/+40 |
2013-06-05 | implement the 'm' (malloc) modifier for scanf | Rich Felker | -22/+48 |
2013-06-05 | refactor wide-char scanf string handling | Rich Felker | -55/+32 |
2013-06-04 | simplify some logic in scanf and remove redundant invalid-format check | Rich Felker | -18/+8 |
2013-06-04 | refactor scanf core to use common code path for all string formats | Rich Felker | -85/+52 |
2013-06-03 | align stack properly for calling global ctors/dtors on x86[_64] | Rich Felker | -0/+8 |
2013-06-03 | ensure that thread dtv pointer is never null to optimize __tls_get_addr | Rich Felker | -4/+6 |
2013-05-26 | Merge remote-tracking branch 'nsz/review' | Rich Felker | -48/+30 |
2013-05-26 | fix the prototype of settimeofday to follow the original BSD declaration | Szabolcs Nagy | -6/+7 |
2013-05-26 | fix ioctl _IOR, _IOW, etc macros to avoid signed overflow (2<<30) | Szabolcs Nagy | -38/+19 |
2013-05-26 | on x86_64 use long instead of long long for 64bit posix types | Szabolcs Nagy | -4/+4 |
2013-05-23 | change underlying type of clock_t to be uniform and match ABI | Rich Felker | -5/+5 |
2013-05-23 | fix overflow behavior of clock() function | Rich Felker | -7/+10 |
2013-05-19 | math: add fma TODO comments about the underflow issue | Szabolcs Nagy | -2/+14 |
2013-05-19 | math: fix two fma issues (only affects non-nearest rounding mode, x86) | Szabolcs Nagy | -4/+38 |
2013-05-18 | Merge remote-tracking branch 'nsz/review' | Rich Felker | -213/+203 |
2013-05-18 | math: sin cos cleanup | Szabolcs Nagy | -112/+128 |
2013-05-18 | make err.h functions print __progname | Rich Felker | -0/+4 |
2013-05-18 | math: tan cleanups | Szabolcs Nagy | -106/+80 |
2013-05-17 | add FLT_TRUE_MIN, etc. macros from C11 | Rich Felker | -0/+8 |
2013-05-17 | remove the __STDC_FORMAT_MACROS nonsense from inttypes.h | Rich Felker | -4/+0 |
2013-05-16 | fix mknod and mknodat to accept large dev_t values | Rich Felker | -5/+2 |
2013-05-15 | math: use double_t for temporaries to avoid stores on i386 | Szabolcs Nagy | -28/+31 |
2013-05-15 | support full range of dev_t major/minor numbers in makedev, etc. macros | Rich Felker | -3/+10 |
2013-05-06 | remove compound literals from math.h to please c++ | Szabolcs Nagy | -5/+10 |
2013-05-05 | fix incorrect clock tick scaling in fallback case of clock() | Rich Felker | -1/+1 |
2013-05-05 | do not interpret errors in return value of times() syscall | Rich Felker | -1/+1 |
2013-04-26 | transition to using functions for internal signal blocking/restoring | Rich Felker | -12/+57 |
2013-04-26 | optimize/debloat raise | Rich Felker | -2/+2 |
2013-04-26 | prevent code from running under a thread id which already gave ESRCH | Rich Felker | -1/+7 |