aboutsummaryrefslogtreecommitdiff
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-29ede6aa13144ff7b69c57a87be1ee93f57ae896.tar.gz
lua-29ede6aa13144ff7b69c57a87be1ee93f57ae896.tar.bz2
lua-29ede6aa13144ff7b69c57a87be1ee93f57ae896.zip
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 @@
1/* 1/*
2** $Id: $ 2** $Id: lbuiltin.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $
3** Built-in functions 3** Built-in functions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -7,8 +7,9 @@
7#ifndef lbuiltin_h 7#ifndef lbuiltin_h
8#define lbuiltin_h 8#define lbuiltin_h
9 9
10#include "lua.h"
10 11
11void luaB_predefine (void); 12void luaB_predefine (lua_State *L);
12 13
13 14
14#endif 15#endif