aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lua.h b/lua.h
index b198d3d5..20feef70 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.173 2003/02/24 16:54:20 roberto Exp roberto $ 2** $Id: lua.h,v 1.174 2003/02/27 11:52:30 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil 4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil
5** http://www.lua.org mailto:info@lua.org 5** http://www.lua.org mailto:info@lua.org
@@ -167,6 +167,7 @@ LUA_API void lua_gettable (lua_State *L, int idx);
167LUA_API void lua_rawget (lua_State *L, int idx); 167LUA_API void lua_rawget (lua_State *L, int idx);
168LUA_API void lua_rawgeti (lua_State *L, int idx, int n); 168LUA_API void lua_rawgeti (lua_State *L, int idx, int n);
169LUA_API void lua_newtable (lua_State *L); 169LUA_API void lua_newtable (lua_State *L);
170LUA_API void *lua_newuserdata (lua_State *L, size_t sz);
170LUA_API int lua_getmetatable (lua_State *L, int objindex); 171LUA_API int lua_getmetatable (lua_State *L, int objindex);
171LUA_API void lua_getfenv (lua_State *L, int idx); 172LUA_API void lua_getfenv (lua_State *L, int idx);
172 173
@@ -218,8 +219,6 @@ LUA_API int lua_next (lua_State *L, int idx);
218 219
219LUA_API void lua_concat (lua_State *L, int n); 220LUA_API void lua_concat (lua_State *L, int n);
220 221
221LUA_API void *lua_newuserdata (lua_State *L, size_t sz);
222
223 222
224 223
225/* 224/*