blob: 082e71fb10293d550ee0cd0f5183534305bb1449 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#ifndef _COMPLEX_H
2# include <math/complex.h>
3
4# ifndef _ISOMAC
5/* Return the complex inverse hyperbolic sine of finite nonzero Z,
6 with the imaginary part of the result subtracted from pi/2 if ADJ
7 is nonzero. */
8extern complex float __kernel_casinhf (complex float z, int adj);
9extern complex double __kernel_casinh (complex double z, int adj);
10extern complex long double __kernel_casinhl (complex long double z, int adj);
11# endif
12
13#endif