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

@@ -267,6 +267,9 @@ struct sLexInitString staticstrings[] = {
{"bank", T_OP_BANK},
{"round", T_OP_ROUND},
{"ceil", T_OP_CEIL},
{"floor", T_OP_FLOOR},
{"div", T_OP_FDIV},
{"mul", T_OP_FMUL},
{"sin", T_OP_SIN},