diff options
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.22 2002/04/09 20:19:06 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.23 2002/06/05 17:24:04 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 | */ |
@@ -38,4 +38,9 @@ LUALIB_API int lua_mathlibopen (lua_State *L); | |||
38 | LUALIB_API int lua_dblibopen (lua_State *L); | 38 | LUALIB_API int lua_dblibopen (lua_State *L); |
39 | 39 | ||
40 | 40 | ||
41 | /* to help testing the libraries */ | ||
42 | #ifndef lua_assert | ||
43 | #define lua_assert(c) /* empty */ | ||
44 | #endif | ||
45 | |||
41 | #endif | 46 | #endif |