add -a flag
[unix-history] / usr / src / usr.bin / f77 / libF77 / z_log.c
/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*
* @(#)z_log.c 5.2 %G%
*/
#include "complex"
#ifdef tahoe
#define cabs zabs
#endif tahoe
z_log(r, z)
dcomplex *r, *z;
{
double log(), cabs(), atan2();
r->dimag = atan2(z->dimag, z->dreal);
r->dreal = log( cabs( z->dreal, z->dimag ) );
}