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 2.3 2004/09/08 14:23:09 roberto Exp roberto $ | 2 | ** $Id: ldo.h,v 2.4 2005/04/25 19:24:10 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 | */ |
@@ -53,7 +53,7 @@ LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults); | |||
53 | LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults); | 53 | LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults); |
54 | LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u, | 54 | LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u, |
55 | ptrdiff_t oldtop, ptrdiff_t ef); | 55 | ptrdiff_t oldtop, ptrdiff_t ef); |
56 | LUAI_FUNC void luaD_poscall (lua_State *L, int wanted, StkId firstResult); | 56 | LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult); |
57 | LUAI_FUNC void luaD_reallocCI (lua_State *L, int newsize); | 57 | LUAI_FUNC void luaD_reallocCI (lua_State *L, int newsize); |
58 | LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize); | 58 | LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize); |
59 | LUAI_FUNC void luaD_growstack (lua_State *L, int n); | 59 | LUAI_FUNC void luaD_growstack (lua_State *L, int n); |