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

#ifdef KR_headers
double erf();
double erf_(x) real *x;
#else
extern double erf(double);
double erf_(real *x)
#endif
{
return( erf(*x) );
}
OpenPOWER on IntegriCloud