Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cabsl.c « complex « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33124653b5054290af293f4c81bd77e0e08cea74 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include <complex.h>

long double cabsl (long double complex Z)
{
  return  hypotl ( __real__ Z,  __imag__ Z);
}