blob: 330f88a30929ba2416a8e2734d079c232ca345cd [file] [log] [blame]
#include "f2c.h"
#ifdef KR_headers
double acos();
double r_acos(x) real *x;
#else
#undef abs
#include <math.h>
double r_acos(real *x)
#endif
{
return( acos(*x) );
}