This commit was generated by cvs2svn to track changes on a CVS vendor
[unix-history] / lib / libF77 / erf_.c
#include "f2c.h"
#ifdef KR_headers
double erf();
double erf_(x) real *x;
#else
extern double erf(double);
double erf_(real *x)
#endif
{
return( erf(*x) );
}