aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ldo.h b/ldo.h
index edcd1b93..baa268eb 100644
--- a/ldo.h
+++ b/ldo.h
@@ -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
51void luaD_init (void);
50void luaD_adjusttop (StkId newtop); 52void luaD_adjusttop (StkId newtop);
51void luaD_openstack (int nelems); 53void luaD_openstack (int nelems);
52void luaD_lineHook (int line); 54void luaD_lineHook (int line);