ack/lang/fortran/lib/libF77/derfc_.c

10 lines
90 B
C
Raw Normal View History

1991-10-07 16:59:33 +00:00
#include "f2c.h"
double derfc_(x)
doublereal *x;
{
double erfc();
return( erfc(*x) );
}