1
0
Fork 0
forked from len0rd/rockbox

Lua: add parts of the math library (all floating point functions are #ifdef'ed out)

Flyspray: FS#10389
Author: myself

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23321 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Maurus Cuelenaere 2009-10-23 10:49:55 +00:00
parent 9dd25adae4
commit 6314952ff1
3 changed files with 287 additions and 0 deletions

View file

@ -38,6 +38,7 @@ static const luaL_Reg lualibs[] = {
{LUA_BITLIBNAME, luaopen_bit},
{LUA_IOLIBNAME, luaopen_io},
{LUA_LOADLIBNAME, luaopen_package},
{LUA_MATHLIBNAME, luaopen_math},
{NULL, NULL}
};