BSD 4_2 release
[unix-history] / usr / src / usr.lib / libF77 / erf_.c
/*
* "@(#)erf_.c 1.1"
*/
float erf_(x)
float *x;
{
double erf();
return( erf(*x) );
}