diff options
Diffstat (limited to 'v_windows/v/vlib/math/cbrt.c.v')
-rw-r--r-- | v_windows/v/vlib/math/cbrt.c.v | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/v_windows/v/vlib/math/cbrt.c.v b/v_windows/v/vlib/math/cbrt.c.v new file mode 100644 index 0000000..892075a --- /dev/null +++ b/v_windows/v/vlib/math/cbrt.c.v @@ -0,0 +1,9 @@ +module math + +fn C.cbrt(x f64) f64 + +// cbrt calculates cubic root. +[inline] +pub fn cbrt(a f64) f64 { + return C.cbrt(a) +} |