diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-10-14 17:46:57 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-10-14 17:46:57 -0200 |
commit | 8e7451512f01a89b4230be65cf086f7c1d41d2e2 (patch) | |
tree | 2679a6305b6d7612ca9705142e3d4dbdcf32d676 /lvm.h | |
parent | 4e9f2d13d5b6fa71ca480394e0b7e75463d4aeec (diff) | |
download | lua-8e7451512f01a89b4230be65cf086f7c1d41d2e2.tar.gz lua-8e7451512f01a89b4230be65cf086f7c1d41d2e2.tar.bz2 lua-8e7451512f01a89b4230be65cf086f7c1d41d2e2.zip |
some more `const's
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.8 1999/02/08 17:07:59 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 1.9 1999/08/16 20:52:00 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 (const TObject *t); | |||
26 | void luaV_rawsettable (const TObject *t); | 26 | void luaV_rawsettable (const TObject *t); |
27 | void luaV_getglobal (TaggedString *ts); | 27 | void luaV_getglobal (TaggedString *ts); |
28 | void luaV_setglobal (TaggedString *ts); | 28 | void luaV_setglobal (TaggedString *ts); |
29 | StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base); | 29 | StkId luaV_execute (const Closure *cl, const TProtoFunc *tf, StkId base); |
30 | void luaV_closure (int nelems); | 30 | void luaV_closure (int nelems); |
31 | void luaV_comparison (lua_Type ttype_less, lua_Type ttype_equal, | 31 | void luaV_comparison (lua_Type ttype_less, lua_Type ttype_equal, |
32 | lua_Type ttype_great, IMS op); | 32 | lua_Type ttype_great, IMS op); |