summaryrefslogtreecommitdiff
path: root/src/core/math_func.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/math_func.hpp')
-rw-r--r--src/core/math_func.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/math_func.hpp b/src/core/math_func.hpp
index 6a0f5c17a..35e660d88 100644
--- a/src/core/math_func.hpp
+++ b/src/core/math_func.hpp
@@ -264,4 +264,7 @@ static FORCEINLINE void Swap(T &a, T &b)
b = t;
}
+int LeastCommonMultiple(int a, int b);
+int GreatestCommonDivisor(int a, int b);
+
#endif /* MATH_FUNC_HPP */