diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-07 11:35:55 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-07 11:35:55 -0300 |
commit | c1c100a0c04bc77623b32269f37df49e7a2457d2 (patch) | |
tree | bb60e4c8a0edcef94b2cdfcf62b1ed82a98cb147 /ldo.h | |
parent | b6e2f1a86e2f75c8672b0e9fb8e75438a1f65db9 (diff) | |
download | lua-c1c100a0c04bc77623b32269f37df49e7a2457d2.tar.gz lua-c1c100a0c04bc77623b32269f37df49e7a2457d2.tar.bz2 lua-c1c100a0c04bc77623b32269f37df49e7a2457d2.zip |
warnings in other compilers
Diffstat (limited to '')
-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.49 2002/08/05 17:36:24 roberto Exp roberto $ | 2 | ** $Id: ldo.h,v 1.50 2002/08/06 15:32:22 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 | */ |
@@ -39,7 +39,7 @@ int luaD_protectedparser (lua_State *L, ZIO *z, int bin); | |||
39 | void luaD_callhook (lua_State *L, lua_Hookevent event, int line); | 39 | void luaD_callhook (lua_State *L, lua_Hookevent event, int line); |
40 | StkId luaD_precall (lua_State *L, StkId func); | 40 | StkId luaD_precall (lua_State *L, StkId func); |
41 | void luaD_call (lua_State *L, StkId func, int nResults); | 41 | void luaD_call (lua_State *L, StkId func, int nResults); |
42 | int luaD_pcall (lua_State *L, int nargs, int nresults, int errfunc); | 42 | int luaD_pcall (lua_State *L, int nargs, int nresults, ptrdiff_t errfunc); |
43 | void luaD_poscall (lua_State *L, int wanted, StkId firstResult); | 43 | void luaD_poscall (lua_State *L, int wanted, StkId firstResult); |
44 | void luaD_reallocCI (lua_State *L, int newsize); | 44 | void luaD_reallocCI (lua_State *L, int newsize); |
45 | void luaD_reallocstack (lua_State *L, int newsize); | 45 | void luaD_reallocstack (lua_State *L, int newsize); |