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

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