Age | Commit message (Expand) | Author | Files | Lines |
2012-03-15 | implement sincosf and sincosl functions; add prototypes | Rich Felker | 3 | -0/+19 |
2012-03-15 | avoid changing NaNs in sqrt (x86 asm) to satisfy c99 f.9 recommendation | Rich Felker | 1 | -0/+4 |
2012-03-15 | correctly rounded sqrt() asm for x86 (i387) | Rich Felker | 1 | -0/+16 |
2012-03-13 | correct rounding for i387 sqrtf function | Rich Felker | 1 | -0/+2 |
2012-03-13 | fix scanf handling of "0" (followed by immediate EOF) with "%x" | Rich Felker | 1 | -11/+6 |
2012-03-13 | implement nan, nanf, nanl | Rich Felker | 3 | -0/+18 |
2012-03-13 | first commit of the new libm! | Rich Felker | 378 | -7738/+20547 |
2012-03-09 | add .gitignore file | Rich Felker | 1 | -0/+9 |
2012-03-02 | fix nan/infinity macros in math.h, etc. | Rich Felker | 1 | -6/+8 |
2012-03-02 | fix obscure bug in strtoull reading the highest 16 possible values | Rich Felker | 1 | -1/+1 |
2012-03-02 | typo in math.h c version check | Rich Felker | 1 | -1/+1 |
2012-03-02 | make math.h compatibe with c89 | Rich Felker | 1 | -1/+5 |
2012-03-02 | remove debug cruft that was left in getdate | Rich Felker | 1 | -2/+0 |
2012-03-02 | first try at implementing getdate function | Rich Felker | 1 | -0/+47 |
2012-03-02 | fix bugs in strptime handling of string day/month names, literals | Rich Felker | 1 | -0/+2 |
2012-03-01 | implement a64l and l64a (legacy xsi stuff) | Rich Felker | 1 | -0/+26 |
2012-03-01 | add all missing wchar functions except floating point parsers | Rich Felker | 12 | -0/+98 |
2012-03-01 | support null buffer argument to getcwd, auto-allocating behavior | Rich Felker | 1 | -1/+6 |
2012-03-01 | add memory.h, bogus legacy alias for string.h | Rich Felker | 1 | -0/+1 |
2012-03-01 | search internal headers first | Rich Felker | 1 | -1/+1 |
2012-02-29 | use c++-friendly initializers for pthread initializer definitions | Rich Felker | 1 | -3/+3 |
2012-02-29 | add <syscall.h> as an alias for <sys/syscall.h> | Rich Felker | 1 | -0/+1 |
2012-02-28 | implement wcsftime function | Rich Felker | 1 | -0/+32 |
2012-02-28 | release notes for 0.8.6v0.8.6 | Rich Felker | 1 | -0/+7 |
2012-02-28 | fix pthread_cleanup_pop(1) crash in non-thread-capable, static-linked programs | Rich Felker | 2 | -2/+2 |
2012-02-27 | update release notes for 0.8.5v0.8.5 | Rich Felker | 1 | -0/+35 |
2012-02-27 | work around "signal loses thread pointer" issue with "approach 2" | Rich Felker | 2 | -2/+8 |
2012-02-25 | use __attribute__((const)) on arm __pthread_self function | Rich Felker | 1 | -1/+3 |
2012-02-24 | replace prototype for basename in string.h with non-prototype declaration | Rich Felker | 1 | -1/+1 |
2012-02-24 | new attempt at working around the gcc 3 visibility bug | Rich Felker | 3 | -0/+11 |
2012-02-24 | remove useless attribute visibility from definitions | Rich Felker | 2 | -2/+2 |
2012-02-23 | cleanup and work around visibility bug in gcc 3 that affects x86_64 | Rich Felker | 4 | -12/+15 |
2012-02-23 | fix (hopefully) PTRACE_TRACEME (command 0) argument handling | Rich Felker | 1 | -2/+2 |
2012-02-23 | fix for previous incorrect fix of cancellation in dns lookups | Rich Felker | 1 | -3/+4 |
2012-02-17 | fix get_current_dir_name behavior | Rich Felker | 1 | -2/+6 |
2012-02-17 | remove -std=gnu99 from musl-gcc wrapper | Rich Felker | 1 | -1/+1 |
2012-02-17 | two fixes for "make install" handling of shared libs | Rich Felker | 1 | -1/+2 |
2012-02-17 | add get_current_dir_name function | Rich Felker | 2 | -0/+13 |
2012-02-15 | add float_t and double_t to math.h | Rich Felker | 4 | -0/+11 |
2012-02-11 | fix default nameserver when resolv.conf doesn't exist | Rich Felker | 1 | -1/+2 |
2012-02-11 | fix illegal goto out of cleanup context in dns lookups | Rich Felker | 1 | -3/+3 |
2012-02-09 | small fix for new pthread cleanup stuff | Rich Felker | 2 | -1/+1 |
2012-02-09 | replace bad cancellation cleanup abi with a sane one | Rich Felker | 7 | -115/+32 |
2012-02-09 | document iswspace and remove wrongly-included zwsp character | Rich Felker | 1 | -1/+5 |
2012-02-09 | fix typo in iswspace space list table | Rich Felker | 1 | -1/+1 |
2012-02-07 | fix typo in inotify.h | Rich Felker | 1 | -1/+1 |
2012-02-07 | protect against cancellation in dlopen | Rich Felker | 1 | -2/+5 |
2012-02-07 | reduce some wasted space in dso structure | Rich Felker | 1 | -3/+3 |
2012-02-07 | declare basename in string.h when _GNU_SOURCE is defined | Rich Felker | 1 | -0/+1 |
2012-02-07 | revert hacks for types of stdint.h integer constant macros | Rich Felker | 1 | -4/+4 |