summaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-01-11 18:26:52 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-01-11 18:26:52 -0200
commitd56d4cf776b2a874e35d7a92c506840f4a2051b6 (patch)
tree873e9d729b589749aa207916dd1c42843154ce63 /ldo.h
parentb7ae43d457ca7b5a46ca768f482b334d70897a14 (diff)
downloadlua-github-d56d4cf776b2a874e35d7a92c506840f4a2051b6.tar.gz
distinct functions to create/destroy states and threads
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 @@
/*
-** $Id: ldo.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $
+** $Id: ldo.h,v 1.38 2002/01/11 20:24:39 roberto Exp $
** Stack and Call structure of Lua
** See Copyright Notice in lua.h
*/
@@ -22,7 +22,6 @@
#define luaD_checkstack(L,n) if (L->stack_last-(n)<=L->top) luaD_stackerror(L)
-void luaD_init (lua_State *L, int stacksize);
void luaD_lineHook (lua_State *L, int line, lua_Hook linehook);
void luaD_callHook (lua_State *L, lua_Hook callhook, const char *event);
StkId luaD_precall (lua_State *L, StkId func);