v/vlib/math/abs.c.v

9 lines
88 B
V
Raw Normal View History

module math
fn C.fabs(x f64) f64
[inline]
pub fn abs(a f64) f64 {
return C.fabs(a)
}