aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/struct.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-src/struct.c')
-rw-r--r--util-src/struct.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/util-src/struct.c b/util-src/struct.c
index b236db5b..a779f53e 100644
--- a/util-src/struct.c
+++ b/util-src/struct.c
@@ -385,11 +385,15 @@ static const struct luaL_Reg thislib[] = {
LUALIB_API int luaopen_util_struct (lua_State *L);
-LUALIB_API int luaopen_util_struct (lua_State *L) {
+LUALIB_API int luaopen_prosody_util_struct (lua_State *L) {
luaL_newlib(L, thislib);
return 1;
}
+LUALIB_API int luaopen_util_struct (lua_State *L) {
+ return luaopen_prosody_util_struct(L);
+}
+
/******************************************************************************
* Copyright (C) 2010-2018 Lua.org, PUC-Rio. All rights reserved.