w_cabsl.c 484 B

12345678910111213141516171819202122
  1. /*
  2. * cabs() wrapper for hypot().
  3. *
  4. * Written by J.T. Conklin, <jtc@wimsey.com>
  5. * Placed into the Public Domain, 1994.
  6. *
  7. * Modified by Steven G. Kargl for the long double type.
  8. */
  9. #include "cdefs-compat.h"
  10. //__FBSDID("$FreeBSD: src/lib/msun/src/w_cabsl.c,v 1.1 2008/03/30 20:02:03 das Exp $");
  11. #include <openlibm_complex.h>
  12. #include <openlibm_math.h>
  13. #include "math_private.h"
  14. OLM_DLLEXPORT long double
  15. cabsl(long double complex z)
  16. {
  17. return hypotl(creall(z), cimagl(z));
  18. }