aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/math/pow.c.v
blob: 7344f508100f969d6c0d9b953176e9c2f8288314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module math

fn C.pow(x f64, y f64) f64

fn C.powf(x f32, y f32) f32

// pow returns base raised to the provided power.
[inline]
pub fn pow(a f64, b f64) f64 {
	return C.pow(a, b)
}

// powf returns base raised to the provided power. (float32)
[inline]
pub fn powf(a f32, b f32) f32 {
	return C.powf(a, b)
}