aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/math/abs.c.v
blob: 983ddcbb98475c7023a84b2aa681b857ed64fcad (plain)
1
2
3
4
5
6
7
8
module math

fn C.fabs(x f64) f64

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