aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua.h5
-rw-r--r--lualib.h5
2 files changed, 6 insertions, 4 deletions
diff --git a/lua.h b/lua.h
index 11e5b555..8e6a89bf 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.66 2000/09/05 19:33:32 roberto Exp roberto $ 2** $Id: lua.h,v 1.67 2000/09/11 19:42:57 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil 4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
5** e-mail: lua@tecgraf.puc-rio.br 5** e-mail: lua@tecgraf.puc-rio.br
@@ -21,7 +21,6 @@
21#define LUA_AUTHORS "W. Celes, R. Ierusalimschy & L. H. de Figueiredo" 21#define LUA_AUTHORS "W. Celes, R. Ierusalimschy & L. H. de Figueiredo"
22 22
23 23
24#define LUA_ALERT "_ALERT"
25#define LUA_ERRORMESSAGE "_ERRORMESSAGE" 24#define LUA_ERRORMESSAGE "_ERRORMESSAGE"
26 25
27 26
@@ -38,9 +37,9 @@
38 37
39 38
40/* error codes for lua_do* */ 39/* error codes for lua_do* */
40#define LUA_ERRRUN 1
41#define LUA_ERRFILE 2 41#define LUA_ERRFILE 2
42#define LUA_ERRSYNTAX 3 42#define LUA_ERRSYNTAX 3
43#define LUA_ERRRUN 1
44#define LUA_ERRMEM 4 43#define LUA_ERRMEM 4
45 44
46 45
diff --git a/lualib.h b/lualib.h
index 463951ab..30dcda34 100644
--- a/lualib.h
+++ b/lualib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lualib.h,v 1.10 2000/08/09 19:16:57 roberto Exp roberto $ 2** $Id: lualib.h,v 1.11 2000/09/05 19:33:32 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*/
@@ -10,6 +10,9 @@
10 10
11#include "lua.h" 11#include "lua.h"
12 12
13
14#define LUA_ALERT "_ALERT"
15
13void lua_baselibopen (lua_State *L); 16void lua_baselibopen (lua_State *L);
14void lua_iolibopen (lua_State *L); 17void lua_iolibopen (lua_State *L);
15void lua_strlibopen (lua_State *L); 18void lua_strlibopen (lua_State *L);