aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/r_atn2.c
blob: 9347e1f13a9af8675883e4ba0ff7cb5de6f3ee83 (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) );
}