date and time created 83/01/21 11:19:18 by dlw
[unix-history] / usr / src / usr.bin / f77 / libF77 / erf_.c
/*
* "@(#)erf_.c 1.1"
*/
float erf_(x)
float *x;
{
double erf();
return( erf(*x) );
}