diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-23 17:31:37 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-23 17:31:37 -0300 |
commit | 8399df5dcf40d078cc6b0fa4df640ef0fc49b5be (patch) | |
tree | c519f3d2532fb0b3105ff240db3d953a0136df55 | |
parent | d2a64bb6d48466d8aa54d5b33c2779b8b7abf098 (diff) | |
download | lua-8399df5dcf40d078cc6b0fa4df640ef0fc49b5be.tar.gz lua-8399df5dcf40d078cc6b0fa4df640ef0fc49b5be.tar.bz2 lua-8399df5dcf40d078cc6b0fa4df640ef0fc49b5be.zip |
detail
-rw-r--r-- | lcode.c | 4 | ||||
-rw-r--r-- | lualib.h | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1,11 +1,11 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lcode.c,v 1.62 2001/02/12 19:21:19 roberto Exp roberto $ | 2 | ** $Id: lcode.c,v 1.63 2001/02/23 17:17:25 roberto Exp roberto $ |
3 | ** Code generator for Lua | 3 | ** Code generator for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
6 | 6 | ||
7 | 7 | ||
8 | #include "stdlib.h" | 8 | #include <stdlib.h> |
9 | 9 | ||
10 | #include "lua.h" | 10 | #include "lua.h" |
11 | 11 | ||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.17 2001/02/23 17:17:25 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.18 2001/02/23 17:28:12 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 | */ |
@@ -16,7 +16,7 @@ | |||
16 | #endif | 16 | #endif |
17 | 17 | ||
18 | 18 | ||
19 | #define LUA_ALERT "_ALERT" | 19 | #define LUA_ALERT l_s("_ALERT") |
20 | 20 | ||
21 | LUALIB_API void lua_baselibopen (lua_State *L); | 21 | LUALIB_API void lua_baselibopen (lua_State *L); |
22 | LUALIB_API void lua_iolibopen (lua_State *L); | 22 | LUALIB_API void lua_iolibopen (lua_State *L); |