summaryrefslogtreecommitdiffstats
path: root/lib/libF77/d_acos.c
blob: ecb56e87f5408d480b11af1c26682d20984d2d01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "f2c.h"

#ifdef KR_headers
double acos();
double d_acos(x) doublereal *x;
#else
#undef abs
#include "math.h"
double d_acos(doublereal *x)
#endif
{
return( acos(*x) );
}
OpenPOWER on IntegriCloud