diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-04-19 10:36:25 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-04-19 10:36:25 -0300 |
commit | 89a9c3628122dccf5297460646038d4def1a098c (patch) | |
tree | de6d6e9da4cb6bbbc34bfa05f0e665d02d5afa26 /lvm.h | |
parent | 8f2fba587784673332976db8a6f48c01349b6e33 (diff) | |
download | lua-89a9c3628122dccf5297460646038d4def1a098c.tar.gz lua-89a9c3628122dccf5297460646038d4def1a098c.tar.bz2 lua-89a9c3628122dccf5297460646038d4def1a098c.zip |
no more `register' declarations: leave it to the compiler.
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 1.19 2000/03/10 18:37:44 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 1.20 2000/03/29 20:19:20 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -26,7 +26,7 @@ void luaV_settable (lua_State *L, StkId t, StkId top); | |||
26 | void luaV_rawsettable (lua_State *L, StkId t); | 26 | void luaV_rawsettable (lua_State *L, StkId t); |
27 | void luaV_getglobal (lua_State *L, GlobalVar *gv, StkId top); | 27 | void luaV_getglobal (lua_State *L, GlobalVar *gv, StkId top); |
28 | void luaV_setglobal (lua_State *L, GlobalVar *gv, StkId top); | 28 | void luaV_setglobal (lua_State *L, GlobalVar *gv, StkId top); |
29 | StkId luaV_execute (lua_State *L, const Closure *cl, register StkId base); | 29 | StkId luaV_execute (lua_State *L, const Closure *cl, StkId base); |
30 | void luaV_Cclosure (lua_State *L, lua_CFunction c, int nelems); | 30 | void luaV_Cclosure (lua_State *L, lua_CFunction c, int nelems); |
31 | void luaV_Lclosure (lua_State *L, Proto *l, int nelems); | 31 | void luaV_Lclosure (lua_State *L, Proto *l, int nelems); |
32 | int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r, StkId top); | 32 | int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r, StkId top); |