Fix botch in previous delta
[unix-history] / usr / src / usr.bin / f77 / libF77 / c_abs.c
CommitLineData
c93fbb1f 1/*
f2719741
RE
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
6 * @(#)c_abs.c 5.1 %G%
c93fbb1f
DW
7 */
8
9#include "complex"
10
11float c_abs(z)
12complex *z;
13{
14double cabs();
15
16return( cabs( z->real, z->imag ) );
17}