aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index e440e30c..478374e3 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.243 2009/09/17 18:04:21 roberto Exp roberto $ 2** $Id: lua.h,v 1.244 2009/09/21 12:09:52 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** Lua.org, PUC-Rio, Brazil (http://www.lua.org) 4** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
5** See Copyright Notice at the end of this file 5** See Copyright Notice at the end of this file
@@ -135,6 +135,7 @@ LUA_API void (lua_pushvalue) (lua_State *L, int idx);
135LUA_API void (lua_remove) (lua_State *L, int idx); 135LUA_API void (lua_remove) (lua_State *L, int idx);
136LUA_API void (lua_insert) (lua_State *L, int idx); 136LUA_API void (lua_insert) (lua_State *L, int idx);
137LUA_API void (lua_replace) (lua_State *L, int idx); 137LUA_API void (lua_replace) (lua_State *L, int idx);
138LUA_API void (lua_copy) (lua_State *L, int fromidx, int toidx);
138LUA_API int (lua_checkstack) (lua_State *L, int sz); 139LUA_API int (lua_checkstack) (lua_State *L, int sz);
139 140
140LUA_API void (lua_xmove) (lua_State *from, lua_State *to, int n); 141LUA_API void (lua_xmove) (lua_State *from, lua_State *to, int n);