summaryrefslogtreecommitdiff
path: root/include/lib
diff options
context:
space:
mode:
authorAetias <aetias@outlook.com>2023-12-20 10:38:50 +0100
committerAetias <aetias@outlook.com>2023-12-20 10:38:50 +0100
commit282500b7244e793a93adb54e759f7c663a710376 (patch)
tree11cbd0a05823f271a350bd590a6c42c3ec1e6aed /include/lib
parent9afe4a17969b6860b3d302d167b1ce2b5c52e573 (diff)
Name function `FastDivide`
Diffstat (limited to 'include/lib')
-rw-r--r--include/lib/math.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/lib/math.h b/include/lib/math.h
new file mode 100644
index 00000000..153ac2c6
--- /dev/null
+++ b/include/lib/math.h
@@ -0,0 +1,8 @@
+#ifndef LIB_MATH_H
+#define LIB_MATH_H
+
+#include "types.h"
+
+extern "C" u32 FastDivide(u32 a, u32 b);
+
+#endif