complex.h 551 B

12345678910111213141516
  1. #ifndef _COMPLEX_H
  2. # include <math/complex.h>
  3. # ifndef _ISOMAC
  4. /* Return the complex inverse hyperbolic sine of finite nonzero Z,
  5. with the imaginary part of the result subtracted from pi/2 if ADJ
  6. is nonzero. */
  7. extern complex float __kernel_casinhf (complex float z, int adj);
  8. extern complex double __kernel_casinh (complex double z, int adj);
  9. extern complex long double __kernel_casinhl (complex long double z, int adj);
  10. # if __HAVE_DISTINCT_FLOAT128
  11. extern __CFLOAT128 __kernel_casinhf128 (__CFLOAT128 z, int adj);
  12. # endif
  13. # endif
  14. #endif