summaryrefslogtreecommitdiff
path: root/gnu/lib/libf2c/libF77/erf_.c
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/lib/libf2c/libF77/erf_.c')
-rw-r--r--gnu/lib/libf2c/libF77/erf_.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/lib/libf2c/libF77/erf_.c b/gnu/lib/libf2c/libF77/erf_.c
new file mode 100644
index 00000000000..1ba4350ad05
--- /dev/null
+++ b/gnu/lib/libf2c/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) );
+}