diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-01-09 20:02:47 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-01-09 20:02:47 -0200 |
commit | f083812c020186d0d919833100c1a0b6eda8c2c0 (patch) | |
tree | 29c2e1d25f05af62277aab03e8e070aaa1a0d664 /lvm.h | |
parent | 3533382a1ed7ba21f0233057c886be2dd8a71d92 (diff) | |
download | lua-github-f083812c020186d0d919833100c1a0b6eda8c2c0.tar.gz |
first implementation of coroutines
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ const TObject *luaV_tonumber (const TObject *obj, TObject *n); int luaV_tostring (lua_State *L, TObject *obj); void luaV_gettable (lua_State *L, StkId t, TObject *key, StkId res); void luaV_settable (lua_State *L, StkId t, TObject *key, StkId val); -StkId luaV_execute (lua_State *L, const LClosure *cl, StkId base); +StkId luaV_execute (lua_State *L); int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r); void luaV_strconc (lua_State *L, int total, StkId top); |