diff options
Diffstat (limited to 'ldo.h')
-rw-r--r-- | ldo.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.h,v 1.40 2002/01/30 17:27:53 roberto Exp roberto $ | 2 | ** $Id: ldo.h,v 1.41 2002/03/20 12:52:32 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 | */ |
@@ -27,7 +27,7 @@ | |||
27 | #define restorestack(L,n) ((TObject *)((char *)L->stack + (n))) | 27 | #define restorestack(L,n) ((TObject *)((char *)L->stack + (n))) |
28 | 28 | ||
29 | 29 | ||
30 | void luaD_lineHook (lua_State *L, int line, lua_Hook linehook); | 30 | void luaD_lineHook (lua_State *L, int line); |
31 | StkId luaD_precall (lua_State *L, StkId func); | 31 | StkId luaD_precall (lua_State *L, StkId func); |
32 | void luaD_call (lua_State *L, StkId func, int nResults); | 32 | void luaD_call (lua_State *L, StkId func, int nResults); |
33 | void luaD_poscall (lua_State *L, int wanted, StkId firstResult); | 33 | void luaD_poscall (lua_State *L, int wanted, StkId firstResult); |