summaryrefslogtreecommitdiff
path: root/lbuiltin.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-11-22 11:12:07 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-11-22 11:12:07 -0200
commit29ede6aa13144ff7b69c57a87be1ee93f57ae896 (patch)
treeadcfb5dcff7db55481cd675349e23dec0e63c939 /lbuiltin.h
parent951897c09319ae5474a4b86bb7d615136577caa0 (diff)
downloadlua-github-29ede6aa13144ff7b69c57a87be1ee93f57ae896.tar.gz
first implementation of multiple states (reentrant code).
Diffstat (limited to 'lbuiltin.h')
-rw-r--r--lbuiltin.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lbuiltin.h b/lbuiltin.h
index 07210f85..6a4915d0 100644
--- a/lbuiltin.h
+++ b/lbuiltin.h
@@ -1,5 +1,5 @@
/*
-** $Id: $
+** $Id: lbuiltin.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $
** Built-in functions
** See Copyright Notice in lua.h
*/
@@ -7,8 +7,9 @@
#ifndef lbuiltin_h
#define lbuiltin_h
+#include "lua.h"
-void luaB_predefine (void);
+void luaB_predefine (lua_State *L);
#endif