aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ldo.h b/ldo.h
index aa568869..929ee8ed 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 1.54 2002/11/21 17:19:11 roberto Exp roberto $ 2** $Id: ldo.h,v 1.55 2002/11/21 17:41:25 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -46,7 +46,8 @@ int luaD_protectedparser (lua_State *L, ZIO *z, int bin);
46void luaD_callhook (lua_State *L, int event, int line); 46void luaD_callhook (lua_State *L, int event, int line);
47StkId luaD_precall (lua_State *L, StkId func); 47StkId luaD_precall (lua_State *L, StkId func);
48void luaD_call (lua_State *L, StkId func, int nResults); 48void luaD_call (lua_State *L, StkId func, int nResults);
49int luaD_pcall (lua_State *L, int nargs, int nresults, ptrdiff_t errfunc); 49int luaD_pcall (lua_State *L, Pfunc func, void *u,
50 ptrdiff_t oldtop, ptrdiff_t ef);
50void luaD_poscall (lua_State *L, int wanted, StkId firstResult); 51void luaD_poscall (lua_State *L, int wanted, StkId firstResult);
51void luaD_reallocCI (lua_State *L, int newsize); 52void luaD_reallocCI (lua_State *L, int newsize);
52void luaD_reallocstack (lua_State *L, int newsize); 53void luaD_reallocstack (lua_State *L, int newsize);