aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/r_sqrt.c
blob: d0203d3d19bd9301772780abb8c860cf4d867f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "f2c.h"

#ifdef KR_headers
double sqrt();
double r_sqrt(x) real *x;
#else
#undef abs
#include <math.h>
double r_sqrt(real *x)
#endif
{
return( sqrt(*x) );
}