about summary refs log tree commit diff
path: root/include/complex.h
Commit message (Collapse)AuthorAgeFilesLines
* make CMPLX macros available in complex.h in non-c11 mode as wellSzabolcs Nagy2012-12-111-2/+0
|
* complex: add C11 CMPLX macros and replace cpack with themSzabolcs Nagy2012-11-131-0/+9
|
* complex: make _Complex_I work with gcc -std=c99 -pedantic-errorsnsz2012-10-211-0/+4
|
* simplify creal and cimag macrosRich Felker2012-03-221-8/+8
|
* add creal/cimag macros in complex.h (and use them in the functions defs)Rich Felker2012-03-221-0/+11
|
* first commit of the new libm!Rich Felker2012-03-131-0/+103
thanks to the hard work of Szabolcs Nagy (nsz), identifying the best (from correctness and license standpoint) implementations from freebsd and openbsd and cleaning them up! musl should now fully support c99 float and long double math functions, and has near-complete complex math support. tgmath should also work (fully on gcc-compatible compilers, and mostly on any c99 compiler). based largely on commit 0376d44a890fea261506f1fc63833e7a686dca19 from nsz's libm git repo, with some additions (dummy versions of a few missing long double complex functions, etc.) by me. various cleanups still need to be made, including re-adding (if they're correct) some asm functions that were dropped.