123456789101112131415161718192021222324252627282930 |
- #include <float.h>
- #include <openlibm_complex.h>
- #include <openlibm_math.h>
- double
- cabs(double complex z)
- {
- return hypot(__real__ z, __imag__ z);
- }
- #if LDBL_MANT_DIG == DBL_MANT_DIG
- __strong_alias(cabsl, cabs);
- #endif
|