summaryrefslogtreecommitdiff
path: root/lualib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-06-16 14:22:43 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-06-16 14:22:43 -0300
commit89a3ec08f37d127fc3c7756cb7cf71586959f8c4 (patch)
tree583e5059db359960da0f6c954916133a46024cfe /lualib.h
parente3ea307434c876f561fa22d22d64ec1030f10415 (diff)
downloadlua-github-89a3ec08f37d127fc3c7756cb7cf71586959f8c4.tar.gz
function lua_userinit is used only in single-state mode (by lua.c)
Diffstat (limited to 'lualib.h')
-rw-r--r--lualib.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lualib.h b/lualib.h
index 8956e19a..f069c167 100644
--- a/lualib.h
+++ b/lualib.h
@@ -1,5 +1,5 @@
/*
-** $Id: lualib.h,v 1.7 1999/08/16 20:52:00 roberto Exp roberto $
+** $Id: lualib.h,v 1.8 1999/11/22 13:12:07 roberto Exp roberto $
** Lua standard libraries
** See Copyright Notice in lua.h
*/
@@ -16,12 +16,10 @@ void lua_mathlibopen (lua_State *L);
void lua_dblibopen (lua_State *L);
-void lua_userinit (lua_State *L);
-
/*
** ===============================================================
-** Macros for single-state use
+** Macros (and functions) for single-state use
** ===============================================================
*/
@@ -31,7 +29,9 @@ void lua_userinit (lua_State *L);
#define lua_strlibopen() (lua_strlibopen)(lua_state)
#define lua_mathlibopen() (lua_mathlibopen)(lua_state)
#define lua_dblibopen() (lua_dblibopen)(lua_state)
-#define lua_userinit() (lua_userinit)(lua_state)
+
+/* this function should be used only in single-state mode */
+void lua_userinit (void);
#endif