From 2b7b8f55716b71875989202a7d2760b7de9d3a6b Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Tue, 16 Apr 2024 19:14:37 -0700 Subject: [PATCH] math: add pow Signed-off-by: Stephen Gutekanst --- src/math/main.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/math/main.zig b/src/math/main.zig index 7762f9b4..dd97af6b 100644 --- a/src/math/main.zig +++ b/src/math/main.zig @@ -134,6 +134,7 @@ pub const nan_f64 = std.math.nan(f64); pub const inf = std.math.inf; pub const sqrt = std.math.sqrt; +pub const pow = std.math.pow; pub const sin = std.math.sin; pub const cos = std.math.cos; pub const acos = std.math.acos;