aboutsummaryrefslogtreecommitdiff
path: root/lualib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-03-17 10:04:58 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-03-17 10:04:58 -0300
commitb0c40e240585b67902bece4569ee683296e475f4 (patch)
treed7af01079027eefcfe885d6e285afc1c8947b560 /lualib.h
parent4734e2de0524cc1896fb8605b9c81c195383eb25 (diff)
downloadlua-b0c40e240585b67902bece4569ee683296e475f4.tar.gz
lua-b0c40e240585b67902bece4569ee683296e475f4.tar.bz2
lua-b0c40e240585b67902bece4569ee683296e475f4.zip
first version of `loadlib'
Diffstat (limited to 'lualib.h')
-rw-r--r--lualib.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lualib.h b/lualib.h
index d393b66d..23e64fce 100644
--- a/lualib.h
+++ b/lualib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lualib.h,v 1.25 2002/07/09 18:49:13 roberto Exp roberto $ 2** $Id: lualib.h,v 1.26 2003/03/11 12:24:34 roberto Exp roberto $
3** Lua standard libraries 3** Lua standard libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -36,6 +36,9 @@ LUALIB_API int luaopen_math (lua_State *L);
36LUALIB_API int luaopen_debug (lua_State *L); 36LUALIB_API int luaopen_debug (lua_State *L);
37 37
38 38
39LUALIB_API int luaopen_loadlib (lua_State *L);
40
41
39/* to help testing the libraries */ 42/* to help testing the libraries */
40#ifndef lua_assert 43#ifndef lua_assert
41#define lua_assert(c) /* empty */ 44#define lua_assert(c) /* empty */