aboutsummaryrefslogtreecommitdiff
path: root/src/libs/math.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/math.hpp')
-rw-r--r--src/libs/math.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libs/math.hpp b/src/libs/math.hpp
new file mode 100644
index 0000000..1eaac1c
--- /dev/null
+++ b/src/libs/math.hpp
@@ -0,0 +1,6 @@
+#pragma once
+
+int pow(int x, int n);
+int max(int x, int y);
+int min(int x, int y);
+int abs(int x);