9 lines
94 B
C
9 lines
94 B
C
|
#include "f2c.h"
|
||
|
|
||
|
double r_atn2(x,y)
|
||
|
real *x, *y;
|
||
|
{
|
||
|
double atan2();
|
||
|
return( atan2(*x,*y) );
|
||
|
}
|