diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-04 13:27:53 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-04 13:27:53 -0200 |
commit | 45cad43c3fedb13a5e424429fe94dc78ba01a118 (patch) | |
tree | e5dae021aa66accc06b6941add38bf2d495c6440 /ldo.h | |
parent | dad5a01fb07e8a654f195ec3a9ca271cd5ee32e3 (diff) | |
download | lua-45cad43c3fedb13a5e424429fe94dc78ba01a118.tar.gz lua-45cad43c3fedb13a5e424429fe94dc78ba01a118.tar.bz2 lua-45cad43c3fedb13a5e424429fe94dc78ba01a118.zip |
"lua_open": now lua has an explicit open operation.
Diffstat (limited to 'ldo.h')
-rw-r--r-- | ldo.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: $ | 2 | ** $Id: ldo.h,v 1.1 1997/09/16 19:25:59 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 | */ |
@@ -47,6 +47,8 @@ extern TObject luaD_errorim; | |||
47 | #define Address(lo) ((lo)+luaD_stack.stack-1) | 47 | #define Address(lo) ((lo)+luaD_stack.stack-1) |
48 | #define Ref(st) ((st)-luaD_stack.stack+1) | 48 | #define Ref(st) ((st)-luaD_stack.stack+1) |
49 | 49 | ||
50 | |||
51 | void luaD_init (void); | ||
50 | void luaD_adjusttop (StkId newtop); | 52 | void luaD_adjusttop (StkId newtop); |
51 | void luaD_openstack (int nelems); | 53 | void luaD_openstack (int nelems); |
52 | void luaD_lineHook (int line); | 54 | void luaD_lineHook (int line); |