This commit is contained in:
Roberto Ierusalimschy 2001-02-23 17:31:37 -03:00
parent d2a64bb6d4
commit 8399df5dcf
2 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
/* /*
** $Id: lcode.c,v 1.62 2001/02/12 19:21:19 roberto Exp roberto $ ** $Id: lcode.c,v 1.63 2001/02/23 17:17:25 roberto Exp roberto $
** Code generator for Lua ** Code generator for Lua
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
#include "stdlib.h" #include <stdlib.h>
#include "lua.h" #include "lua.h"

View File

@ -1,5 +1,5 @@
/* /*
** $Id: lualib.h,v 1.17 2001/02/23 17:17:25 roberto Exp roberto $ ** $Id: lualib.h,v 1.18 2001/02/23 17:28:12 roberto Exp roberto $
** Lua standard libraries ** Lua standard libraries
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -16,7 +16,7 @@
#endif #endif
#define LUA_ALERT "_ALERT" #define LUA_ALERT l_s("_ALERT")
LUALIB_API void lua_baselibopen (lua_State *L); LUALIB_API void lua_baselibopen (lua_State *L);
LUALIB_API void lua_iolibopen (lua_State *L); LUALIB_API void lua_iolibopen (lua_State *L);