diff options
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 14 |
1 files changed, 4 insertions, 10 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.29 2004/03/24 15:46:49 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.30 2004/05/28 18:35:05 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 | */ |
@@ -11,11 +11,6 @@ | |||
11 | #include "lua.h" | 11 | #include "lua.h" |
12 | 12 | ||
13 | 13 | ||
14 | #ifndef LUALIB_API | ||
15 | #define LUALIB_API LUA_API | ||
16 | #endif | ||
17 | |||
18 | |||
19 | /* Key to file-handle type */ | 14 | /* Key to file-handle type */ |
20 | #define LUA_FILEHANDLE "FILE*" | 15 | #define LUA_FILEHANDLE "FILE*" |
21 | 16 | ||
@@ -43,9 +38,8 @@ LUALIB_API int luaopen_debug (lua_State *L); | |||
43 | LUALIB_API int luaopen_loadlib (lua_State *L); | 38 | LUALIB_API int luaopen_loadlib (lua_State *L); |
44 | 39 | ||
45 | 40 | ||
46 | /* to help testing the libraries */ | 41 | /* open all previous libraries */ |
47 | #ifndef lua_assert | 42 | LUALIB_API int luaopen_stdlibs (lua_State *L); |
48 | #define lua_assert(c) /* empty */ | 43 | |
49 | #endif | ||
50 | 44 | ||
51 | #endif | 45 | #endif |