aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/d_acos.c
blob: 33da5369db216787f51678a326041b96e77e4ff6 (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) );
}