aboutsummaryrefslogtreecommitdiff
path: root/lualib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lualib.h')
-rw-r--r--lualib.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/lualib.h b/lualib.h
index 68d88d7e..23c0298b 100644
--- a/lualib.h
+++ b/lualib.h
@@ -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);
38LUALIB_API int lua_dblibopen (lua_State *L); 38LUALIB_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