diff options
author | Szabolcs Nagy <nsz@port70.net> | 2018-11-29 22:09:53 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-04-17 13:03:52 -0400 |
commit | 2d72b58070bc43a727b580a46746e87215a60a33 (patch) | |
tree | e890c9ae3fa3b496e321dcadfec38f3bf8cef959 /src/complex/cexpf.c | |
parent | e980ca7a571465e8a4c887a199491c2cd8d0c0ee (diff) | |
download | musl-2d72b58070bc43a727b580a46746e87215a60a33.tar.gz musl-2d72b58070bc43a727b580a46746e87215a60a33.tar.bz2 musl-2d72b58070bc43a727b580a46746e87215a60a33.tar.xz musl-2d72b58070bc43a727b580a46746e87215a60a33.zip |
math: move complex math out of libm.h
This makes it easier to build musl math code with a compiler that
does not support complex types (tcc) and in general more sensible
factorization of the internal headers.
Diffstat (limited to 'src/complex/cexpf.c')
-rw-r--r-- | src/complex/cexpf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/complex/cexpf.c b/src/complex/cexpf.c index 1a09964c..00d258f3 100644 --- a/src/complex/cexpf.c +++ b/src/complex/cexpf.c @@ -25,7 +25,7 @@ * SUCH DAMAGE. */ -#include "libm.h" +#include "complex_impl.h" static const uint32_t exp_ovfl = 0x42b17218, /* MAX_EXP * ln2 ~= 88.722839355 */ |