aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/math/erf.c.v
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/vlib/math/erf.c.v')
-rw-r--r--v_windows/v/vlib/math/erf.c.v17
1 files changed, 17 insertions, 0 deletions
diff --git a/v_windows/v/vlib/math/erf.c.v b/v_windows/v/vlib/math/erf.c.v
new file mode 100644
index 0000000..1606152
--- /dev/null
+++ b/v_windows/v/vlib/math/erf.c.v
@@ -0,0 +1,17 @@
+module math
+
+fn C.erf(x f64) f64
+
+fn C.erfc(x f64) f64
+
+// erf computes the error function value
+[inline]
+pub fn erf(a f64) f64 {
+ return C.erf(a)
+}
+
+// erfc computes the complementary error function value
+[inline]
+pub fn erfc(a f64) f64 {
+ return C.erfc(a)
+}