diff options
Diffstat (limited to 'inout.h')
-rw-r--r-- | inout.h | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: inout.h,v 1.7 1994/12/20 21:20:36 roberto Exp roberto $ | 2 | ** $Id: inout.h,v 1.8 1995/05/02 18:43:03 roberto Exp roberto $ |
3 | */ | 3 | */ |
4 | 4 | ||
5 | 5 | ||
@@ -8,9 +8,6 @@ | |||
8 | 8 | ||
9 | #include "types.h" | 9 | #include "types.h" |
10 | 10 | ||
11 | #ifndef MAXFUNCSTACK | ||
12 | #define MAXFUNCSTACK 100 | ||
13 | #endif | ||
14 | 11 | ||
15 | extern Word lua_linenumber; | 12 | extern Word lua_linenumber; |
16 | extern Bool lua_debug; | 13 | extern Bool lua_debug; |
@@ -22,13 +19,14 @@ char *lua_openstring (char *s); | |||
22 | void lua_closestring (void); | 19 | void lua_closestring (void); |
23 | void lua_pushfunction (char *file, Word function); | 20 | void lua_pushfunction (char *file, Word function); |
24 | void lua_popfunction (void); | 21 | void lua_popfunction (void); |
25 | void luaI_reportbug (char *s, int size); | 22 | void luaI_reportbug (char *s, int err); |
26 | 23 | ||
27 | void lua_internaldofile (void); | 24 | void lua_internaldofile (void); |
28 | void lua_internaldostring (void); | 25 | void lua_internaldostring (void); |
29 | void lua_print (void); | 26 | void lua_print (void); |
30 | void luaI_type (void); | 27 | void luaI_type (void); |
31 | void lua_obj2number (void); | 28 | void lua_obj2number (void); |
29 | void luaI_getstack (void); | ||
32 | void luaI_error (void); | 30 | void luaI_error (void); |
33 | 31 | ||
34 | #endif | 32 | #endif |