From b0c40e240585b67902bece4569ee683296e475f4 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 17 Mar 2003 10:04:58 -0300 Subject: first version of `loadlib' --- lualib.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lualib.h') diff --git a/lualib.h b/lualib.h index d393b66d..23e64fce 100644 --- a/lualib.h +++ b/lualib.h @@ -1,5 +1,5 @@ /* -** $Id: lualib.h,v 1.25 2002/07/09 18:49:13 roberto Exp roberto $ +** $Id: lualib.h,v 1.26 2003/03/11 12:24:34 roberto Exp roberto $ ** Lua standard libraries ** See Copyright Notice in lua.h */ @@ -36,6 +36,9 @@ LUALIB_API int luaopen_math (lua_State *L); LUALIB_API int luaopen_debug (lua_State *L); +LUALIB_API int luaopen_loadlib (lua_State *L); + + /* to help testing the libraries */ #ifndef lua_assert #define lua_assert(c) /* empty */ -- cgit v1.2.3-55-g6feb