diff options
Diffstat (limited to 'inout.h')
-rw-r--r-- | inout.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: inout.h,v 1.10 1995/10/17 11:58:41 roberto Exp roberto $ | 2 | ** $Id: inout.h,v 1.11 1996/01/22 17:40:00 roberto Exp roberto $ |
3 | */ | 3 | */ |
4 | 4 | ||
5 | 5 | ||
@@ -14,7 +14,7 @@ extern Bool lua_debug; | |||
14 | extern Word lua_debugline; | 14 | extern Word lua_debugline; |
15 | extern char *lua_parsedfile; | 15 | extern char *lua_parsedfile; |
16 | 16 | ||
17 | char *lua_openfile (char *fn); | 17 | int lua_openfile (char *fn); |
18 | void lua_closefile (void); | 18 | void lua_closefile (void); |
19 | void lua_openstring (char *s); | 19 | void lua_openstring (char *s); |
20 | void lua_closestring (void); | 20 | void lua_closestring (void); |
@@ -26,5 +26,8 @@ void luaI_print (void); | |||
26 | void luaI_type (void); | 26 | void luaI_type (void); |
27 | void lua_obj2number (void); | 27 | void lua_obj2number (void); |
28 | void luaI_error (void); | 28 | void luaI_error (void); |
29 | void luaI_assert (void); | ||
30 | void luaI_setglobal (void); | ||
31 | void luaI_getglobal (void); | ||
29 | 32 | ||
30 | #endif | 33 | #endif |