summaryrefslogtreecommitdiff
path: root/inout.h
diff options
context:
space:
mode:
Diffstat (limited to 'inout.h')
-rw-r--r--inout.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/inout.h b/inout.h
index f8cc0e93..0714f1a4 100644
--- a/inout.h
+++ b/inout.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: inout.h,v 1.2 1994/10/11 14:38:17 celes Exp roberto $ 2** $Id: inout.h,v 1.3 1994/11/02 20:29:39 roberto Exp roberto $
3*/ 3*/
4 4
5 5
@@ -10,9 +10,9 @@ extern int lua_linenumber;
10extern int lua_debug; 10extern int lua_debug;
11extern int lua_debugline; 11extern int lua_debugline;
12 12
13int lua_openfile (char *fn); 13char *lua_openfile (char *fn);
14void lua_closefile (void); 14void lua_closefile (void);
15int lua_openstring (char *s); 15char *lua_openstring (char *s);
16void lua_closestring (void); 16void lua_closestring (void);
17int lua_pushfunction (char *file, int function); 17int lua_pushfunction (char *file, int function);
18void lua_popfunction (void); 18void lua_popfunction (void);
@@ -21,6 +21,7 @@ void lua_reportbug (char *s);
21void lua_internaldofile (void); 21void lua_internaldofile (void);
22void lua_internaldostring (void); 22void lua_internaldostring (void);
23void lua_print (void); 23void lua_print (void);
24void lua_type (void); 24void luaI_type (void);
25void lua_obj2number (void);
25 26
26#endif 27#endif