ack/lang/fortran/lib/libF77/r_atan.c

9 lines
83 B
C
Raw Normal View History

1991-10-07 16:59:33 +00:00
#include "f2c.h"
double r_atan(x)
real *x;
{
double atan();
return( atan(*x) );
}