mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
parent
2ec8fbe7e5
commit
dff4beae02
12 changed files with 2 additions and 56 deletions
|
@ -36,12 +36,6 @@
|
|||
#include "lauxlib.h"
|
||||
|
||||
|
||||
#if (LUA_VERSION_NUM >= 502)
|
||||
|
||||
#define luaL_register(L,n,f) luaL_newlib(L,f)
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
/* basic integer type */
|
||||
#if !defined(STRUCT_INT)
|
||||
|
@ -392,7 +386,7 @@ static const struct luaL_Reg thislib[] = {
|
|||
LUALIB_API int luaopen_util_struct (lua_State *L);
|
||||
|
||||
LUALIB_API int luaopen_util_struct (lua_State *L) {
|
||||
luaL_register(L, "struct", thislib);
|
||||
luaL_newlib(L, thislib);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue