]> git.ipfire.org Git - thirdparty/glibc.git/blame - include/complex.h
test-container: Fix "unused code" warnings on HURD
[thirdparty/glibc.git] / include / complex.h
CommitLineData
728d7b43
JM
1#ifndef _COMPLEX_H
2# include <math/complex.h>
3
b92a20b5 4# ifndef _ISOMAC
728d7b43
JM
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);
81f26b53
PM
11# if __HAVE_DISTINCT_FLOAT128
12extern __CFLOAT128 __kernel_casinhf128 (__CFLOAT128 z, int adj);
13# endif
b92a20b5 14# endif
728d7b43
JM
15
16#endif