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

#ifdef KR_headers
extern double erfc();

double derfc_(x) doublereal *x;
#else
extern double erfc(double);

double derfc_(doublereal *x)
#endif
{
return( erfc(*x) );
}
OpenPOWER on IntegriCloud