summaryrefslogtreecommitdiffstats
path: root/lib/libF77/r_atn2.c
blob: 3832a27f3e3ca4d4b99cefade571c5496d713d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "f2c.h"

#ifdef KR_headers
double atan2();
double r_atn2(x,y) real *x, *y;
#else
#undef abs
#include "math.h"
double r_atn2(real *x, real *y)
#endif
{
return( atan2(*x,*y) );
}
OpenPOWER on IntegriCloud