V7M/src/libF77/c_abs.c

Compare this file to the similar file:
Show the results in this format:

#include "complex"

float c_abs(z)
complex *z;
{
double cabs();

return( cabs( z->real, z->imag ) );
}