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

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