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