musl - an implementation of the standard library for Linux-based systems
blob: 45d5862c8baca5d8586e9681cf10cf499432b668 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include "complex_impl.h"
//FIXME
long double complex ctanhl(long double complex z)
{
return ctanh(z);
}
|