2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libf2c / libF77 / c_log.c
blob7d5b9513167dba920942572c159336958e990c2c
1 #include "f2c.h"
3 #undef abs
4 #include "math.h"
5 extern double f__cabs (double, double);
7 void
8 c_log (complex * r, complex * z)
10 double zi, zr;
11 r->i = atan2 (zi = z->i, zr = z->r);
12 r->r = log (f__cabs (zr, zi));