aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-01 15:54:31 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-01 15:54:31 -0200
commit41e4c5798ee95404f6687def4bbed236566db676 (patch)
tree7d1b8ecfde62af636540e5656f8ce28776798615 /lua.h
parentfb23cd2e26163da34e541b64f5cfd6168ce32840 (diff)
downloadlua-41e4c5798ee95404f6687def4bbed236566db676.tar.gz
lua-41e4c5798ee95404f6687def4bbed236566db676.tar.bz2
lua-41e4c5798ee95404f6687def4bbed236566db676.zip
small corrections
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/lua.h b/lua.h
index 2452c161..a93ef30e 100644
--- a/lua.h
+++ b/lua.h
@@ -2,17 +2,13 @@
2** LUA - Linguagem para Usuarios de Aplicacao 2** LUA - Linguagem para Usuarios de Aplicacao
3** Grupo de Tecnologia em Computacao Grafica 3** Grupo de Tecnologia em Computacao Grafica
4** TeCGraf - PUC-Rio 4** TeCGraf - PUC-Rio
5** $Id: lua.h,v 1.3 1994/08/17 15:05:08 celes Exp celes $ 5** $Id: lua.h,v 1.4 1994/08/24 15:29:02 celes Exp roberto $
6*/ 6*/
7 7
8 8
9#ifndef lua_h 9#ifndef lua_h
10#define lua_h 10#define lua_h
11 11
12#ifdef __cplusplus
13extern "C"
14{
15#endif
16 12
17typedef void (*lua_CFunction) (void); 13typedef void (*lua_CFunction) (void);
18typedef struct Object *lua_Object; 14typedef struct Object *lua_Object;
@@ -61,8 +57,4 @@ int lua_isfunction (lua_Object object);
61int lua_iscfunction (lua_Object object); 57int lua_iscfunction (lua_Object object);
62int lua_isuserdata (lua_Object object); 58int lua_isuserdata (lua_Object object);
63 59
64#ifdef __cplusplus
65}
66#endif
67
68#endif 60#endif