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

#ifdef KR_headers
double erf();
double G77_erf_0 (x) real *x;
#else
extern double erf(double);
double G77_erf_0 (real *x)
#endif
{
return( erf(*x) );
}