4.2BSD/usr/src/usr.lib/libF77/erf_.c

Compare this file to the similar file:
Show the results in this format:

/*
 *	"@(#)erf_.c	1.1"
 */

float erf_(x)
float *x;
{
double erf();

return( erf(*x) );
}