summaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-06-22 17:37:23 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-06-22 17:37:23 -0300
commit521b38532a29ab0590be722712b7c367607e5ba9 (patch)
treed675eb5dc86c6ccd9db3409be2a6c4bc441f97bf /ldo.h
parent36b6fe8d175bb2aec8fc55ffb090eab90cb12fd8 (diff)
downloadlua-github-521b38532a29ab0590be722712b7c367607e5ba9.tar.gz
better interfaces for luaD_calln (x luaD_call)
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/ldo.h b/ldo.h
index b39e737d..cf651423 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
/*
-** $Id: ldo.h,v 1.4 1997/12/15 16:17:20 roberto Exp roberto $
+** $Id: ldo.h,v 1.5 1998/07/12 16:14:34 roberto Exp roberto $
** Stack and Call structure of Lua
** See Copyright Notice in lua.h
*/
@@ -35,10 +35,9 @@ void luaD_adjusttop (StkId newtop);
void luaD_openstack (int nelems);
void luaD_lineHook (int line);
void luaD_callHook (StkId base, TProtoFunc *tf, int isreturn);
-void luaD_call (StkId base, int nResults);
void luaD_calln (int nArgs, int nResults);
void luaD_callTM (TObject *f, int nParams, int nResults);
-int luaD_protectedrun (int nResults);
+int luaD_protectedrun (void);
void luaD_gcIM (TObject *o);
void luaD_travstack (int (*fn)(TObject *));
void luaD_checkstack (int n);