diff options
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); |