summaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-01-16 20:04:50 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-01-16 20:04:50 -0200
commitdea98702c97df5047567914fc68a7ceffcdca810 (patch)
treef44efb6baa260c29dd023f7580e7cdc42b72c7f2 /lvm.h
parent7ab7703b53be3024a06334653b29dac338e55a01 (diff)
downloadlua-github-dea98702c97df5047567914fc68a7ceffcdca810.tar.gz
preparations for stack reallocation
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lvm.h b/lvm.h
index ebe15e65..b69c5411 100644
--- a/lvm.h
+++ b/lvm.h
@@ -22,6 +22,6 @@ void luaV_gettable (lua_State *L, StkId t, TObject *key, StkId res);
void luaV_settable (lua_State *L, StkId t, TObject *key, StkId val);
StkId luaV_execute (lua_State *L);
int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r);
-void luaV_strconc (lua_State *L, int total, StkId top);
+void luaV_strconc (lua_State *L, int total, int last);
#endif