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

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