aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index 58d5b27d..92f50bb6 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.48 2000/04/17 19:23:12 roberto Exp roberto $ 2** $Id: lua.h,v 1.49 2000/05/08 19:32:53 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
@@ -25,7 +25,7 @@ typedef struct lua_State lua_State;
25 25
26typedef void (*lua_CFunction) (lua_State *L); 26typedef void (*lua_CFunction) (lua_State *L);
27 27
28typedef struct TObject *lua_Object; 28typedef struct lua_TObject *lua_Object;
29 29
30#define LUA_NOOBJECT ((lua_Object)0) 30#define LUA_NOOBJECT ((lua_Object)0)
31 31