10 lines
80 B
C
10 lines
80 B
C
|
#include "f2c.h"
|
||
|
|
||
|
double erf_(x)
|
||
|
real *x;
|
||
|
{
|
||
|
double erf();
|
||
|
|
||
|
return( erf(*x) );
|
||
|
}
|