diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-03-17 10:04:58 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-03-17 10:04:58 -0300 |
commit | b0c40e240585b67902bece4569ee683296e475f4 (patch) | |
tree | d7af01079027eefcfe885d6e285afc1c8947b560 /lualib.h | |
parent | 4734e2de0524cc1896fb8605b9c81c195383eb25 (diff) | |
download | lua-b0c40e240585b67902bece4569ee683296e475f4.tar.gz lua-b0c40e240585b67902bece4569ee683296e475f4.tar.bz2 lua-b0c40e240585b67902bece4569ee683296e475f4.zip |
first version of `loadlib'
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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); | |||
36 | LUALIB_API int luaopen_debug (lua_State *L); | 36 | LUALIB_API int luaopen_debug (lua_State *L); |
37 | 37 | ||
38 | 38 | ||
39 | LUALIB_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 */ |