summaryrefslogtreecommitdiff
path: root/libf2c/libF77/r_atan.c
blob: f8262f23ce5bc140a0c7f922bcac0bb4f728f255 (plain)
1
2
3
4
5
6
7
8
#include "f2c.h"

#undef abs
#include <math.h>
double r_atan(real *x)
{
return( atan(*x) );
}