From 2d72b58070bc43a727b580a46746e87215a60a33 Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Thu, 29 Nov 2018 22:09:53 +0000 Subject: 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. --- src/complex/ccosh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/complex/ccosh.c') diff --git a/src/complex/ccosh.c b/src/complex/ccosh.c index 401f3c60..c995da7b 100644 --- a/src/complex/ccosh.c +++ b/src/complex/ccosh.c @@ -34,7 +34,7 @@ * These values and the return value were taken from n1124.pdf. */ -#include "libm.h" +#include "complex_impl.h" static const double huge = 0x1p1023; -- cgit v1.2.1