detail (change place of a prototype)

This commit is contained in:
Roberto Ierusalimschy 2003-03-18 09:31:39 -03:00
parent 40cfb0691e
commit 81cdbabf09
1 changed files with 2 additions and 3 deletions

5
lua.h
View File

@ -1,5 +1,5 @@
/*
** $Id: lua.h,v 1.173 2003/02/24 16:54:20 roberto Exp roberto $
** $Id: lua.h,v 1.174 2003/02/27 11:52:30 roberto Exp roberto $
** Lua - An Extensible Extension Language
** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil
** http://www.lua.org mailto:info@lua.org
@ -167,6 +167,7 @@ LUA_API void lua_gettable (lua_State *L, int idx);
LUA_API void lua_rawget (lua_State *L, int idx);
LUA_API void lua_rawgeti (lua_State *L, int idx, int n);
LUA_API void lua_newtable (lua_State *L);
LUA_API void *lua_newuserdata (lua_State *L, size_t sz);
LUA_API int lua_getmetatable (lua_State *L, int objindex);
LUA_API void lua_getfenv (lua_State *L, int idx);
@ -218,8 +219,6 @@ LUA_API int lua_next (lua_State *L, int idx);
LUA_API void lua_concat (lua_State *L, int n);
LUA_API void *lua_newuserdata (lua_State *L, size_t sz);
/*