diff options
| author | Aetias <aetias@outlook.com> | 2023-12-20 10:38:50 +0100 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2023-12-20 10:38:50 +0100 |
| commit | 282500b7244e793a93adb54e759f7c663a710376 (patch) | |
| tree | 11cbd0a05823f271a350bd590a6c42c3ec1e6aed /include | |
| parent | 9afe4a17969b6860b3d302d167b1ce2b5c52e573 (diff) | |
Name function `FastDivide`
Diffstat (limited to 'include')
| -rw-r--r-- | include/lib/math.h | 8 |
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 |
