aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/ldo.h b/ldo.h
index 769fccb9..83ed513b 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ 2** $Id: ldo.h,v 1.38 2002/01/11 20:24:39 roberto Exp $
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*/
@@ -22,7 +22,6 @@
22#define luaD_checkstack(L,n) if (L->stack_last-(n)<=L->top) luaD_stackerror(L) 22#define luaD_checkstack(L,n) if (L->stack_last-(n)<=L->top) luaD_stackerror(L)
23 23
24 24
25void luaD_init (lua_State *L, int stacksize);
26void luaD_lineHook (lua_State *L, int line, lua_Hook linehook); 25void luaD_lineHook (lua_State *L, int line, lua_Hook linehook);
27void luaD_callHook (lua_State *L, lua_Hook callhook, const char *event); 26void luaD_callHook (lua_State *L, lua_Hook callhook, const char *event);
28StkId luaD_precall (lua_State *L, StkId func); 27StkId luaD_precall (lua_State *L, StkId func);