aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/derfc_.c
blob: ae1ac740302216e1a91d28bb8af90a22cd9a61d6 (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 G77_derfc_0 (x) doublereal *x;
#else
extern double erfc(double);

double G77_derfc_0 (doublereal *x)
#endif
{
return( erfc(*x) );
}