diff options
Diffstat (limited to 'gcc/f/runtime/libF77/erf_.c')
-rw-r--r-- | gcc/f/runtime/libF77/erf_.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/f/runtime/libF77/erf_.c b/gcc/f/runtime/libF77/erf_.c new file mode 100644 index 00000000000..1ba4350ad05 --- /dev/null +++ b/gcc/f/runtime/libF77/erf_.c @@ -0,0 +1,12 @@ +#include "f2c.h" + +#ifdef KR_headers +double erf(); +double G77_erf_0 (x) real *x; +#else +extern double erf(double); +double G77_erf_0 (real *x) +#endif +{ +return( erf(*x) ); +} |