diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-02-27 15:47:32 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-02-27 15:47:32 -0300 |
commit | 34b00c16e28c2bbc3e633b4007de956130905ed6 (patch) | |
tree | fca960c3f8f1945a052a776722ccef4944b748fa /lualib.h | |
parent | 12110dec0eda3813b7609051aedb0cde932fbf93 (diff) | |
download | lua-34b00c16e28c2bbc3e633b4007de956130905ed6.tar.gz lua-34b00c16e28c2bbc3e633b4007de956130905ed6.tar.bz2 lua-34b00c16e28c2bbc3e633b4007de956130905ed6.zip |
removed compatibility code with older versions
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.44 2014/02/06 17:32:33 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.45 2017/01/12 17:14:26 roberto Exp roberto $ |
3 | ** Lua standard libraries | 3 | ** Lua standard libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -35,9 +35,6 @@ LUAMOD_API int (luaopen_string) (lua_State *L); | |||
35 | #define LUA_UTF8LIBNAME "utf8" | 35 | #define LUA_UTF8LIBNAME "utf8" |
36 | LUAMOD_API int (luaopen_utf8) (lua_State *L); | 36 | LUAMOD_API int (luaopen_utf8) (lua_State *L); |
37 | 37 | ||
38 | #define LUA_BITLIBNAME "bit32" | ||
39 | LUAMOD_API int (luaopen_bit32) (lua_State *L); | ||
40 | |||
41 | #define LUA_MATHLIBNAME "math" | 38 | #define LUA_MATHLIBNAME "math" |
42 | LUAMOD_API int (luaopen_math) (lua_State *L); | 39 | LUAMOD_API int (luaopen_math) (lua_State *L); |
43 | 40 | ||