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/catanhl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/complex/catanhl.c') diff --git a/src/complex/catanhl.c b/src/complex/catanhl.c index a5dd538e..6025c414 100644 --- a/src/complex/catanhl.c +++ b/src/complex/catanhl.c @@ -1,4 +1,4 @@ -#include "libm.h" +#include "complex_impl.h" #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024 long double complex catanhl(long double complex z) -- cgit v1.2.1