ack/lang/fortran/lib/libF77/derf_.c
1991-10-07 16:59:33 +00:00

10 lines
87 B
C

#include "f2c.h"
double derf_(x)
doublereal *x;
{
double erf();
return( erf(*x) );
}