mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-03 09:00:21 +00:00
09c656ca68
Obtained from: netlib.att.com
13 lines
158 B
C
13 lines
158 B
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) );
|
|
}
|