mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-25 11:37:56 +00:00
15 lines
198 B
C
15 lines
198 B
C
#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) );
|
|
}
|