aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/math/hypot.c.v
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/vlib/math/hypot.c.v')
-rw-r--r--v_windows/v/vlib/math/hypot.c.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/v_windows/v/vlib/math/hypot.c.v b/v_windows/v/vlib/math/hypot.c.v
new file mode 100644
index 0000000..9710ea4
--- /dev/null
+++ b/v_windows/v/vlib/math/hypot.c.v
@@ -0,0 +1,9 @@
+module math
+
+fn C.hypot(x f64, y f64) f64
+
+// Returns hypotenuse of a right triangle.
+[inline]
+pub fn hypot(x f64, y f64) f64 {
+ return C.hypot(x, y)
+}