diff options
Diffstat (limited to 'src/libs/math.hpp')
| -rw-r--r-- | src/libs/math.hpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/libs/math.hpp b/src/libs/math.hpp index 1eaac1c..c5b7c46 100644 --- a/src/libs/math.hpp +++ b/src/libs/math.hpp @@ -1,6 +1,8 @@ #pragma once -int pow(int x, int n); -int max(int x, int y); -int min(int x, int y); -int abs(int x); +#include "core/types.hpp" + +u32 pow(u32 x, u32 n); +u32 max(u32 x, u32 y); +u32 min(u32 x, u32 y); +u32 abs(u32 x); |
