4.2BSD/usr/src/usr.lib/libF77/z_abs.c

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

/*
 *	"@(#)z_abs.c	1.1"
 */

#include "complex"

double z_abs(z)
dcomplex *z;
{
double cabs();

return( cabs( z->dreal, z->dimag ) );
}