10 lines
87 B
C
10 lines
87 B
C
#include "f2c.h"
|
|
|
|
double derf_(x)
|
|
doublereal *x;
|
|
{
|
|
double erf();
|
|
|
|
return( erf(*x) );
|
|
}
|