Implement round, ceil, and floor math functions.

This commit is contained in:
stag019
2014-11-08 00:17:26 -05:00
parent dca82e6d95
commit 9b4959cb75
4 changed files with 49 additions and 0 deletions

View File

@@ -14,5 +14,8 @@ SLONG math_ATan(SLONG i);
SLONG math_ATan2(SLONG i, SLONG j);
SLONG math_Mul(SLONG i, SLONG j);
SLONG math_Div(SLONG i, SLONG j);
SLONG math_Round(SLONG i);
SLONG math_Ceil(SLONG i);
SLONG math_Floor(SLONG i);
#endif