9 lines
83 B
C
9 lines
83 B
C
|
#include "f2c.h"
|
||
|
|
||
|
double r_atan(x)
|
||
|
real *x;
|
||
|
{
|
||
|
double atan();
|
||
|
return( atan(*x) );
|
||
|
}
|