diff options
Diffstat (limited to 'opcode.h')
-rw-r--r-- | opcode.h | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | ** TeCGraf - PUC-Rio | 2 | ** TeCGraf - PUC-Rio |
3 | ** $Id: $ | 3 | ** $Id: opcode.h,v 1.1 1993/12/17 18:41:19 celes Exp roberto $ |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #ifndef opcode_h | 6 | #ifndef opcode_h |
@@ -82,7 +82,6 @@ typedef enum | |||
82 | 82 | ||
83 | typedef void (*Cfunction) (void); | 83 | typedef void (*Cfunction) (void); |
84 | typedef int (*Input) (void); | 84 | typedef int (*Input) (void); |
85 | typedef void (*Unput) (int ); | ||
86 | 85 | ||
87 | typedef union | 86 | typedef union |
88 | { | 87 | { |
@@ -132,9 +131,8 @@ int lua_execute (Byte *pc); | |||
132 | void lua_markstack (void); | 131 | void lua_markstack (void); |
133 | char *lua_strdup (char *l); | 132 | char *lua_strdup (char *l); |
134 | 133 | ||
135 | void lua_setinput (Input fn); /* from "lua.lex" module */ | 134 | void lua_setinput (Input fn); /* from "lex.c" module */ |
136 | void lua_setunput (Unput fn); /* from "lua.lex" module */ | 135 | char *lua_lasttext (void); /* from "lex.c" module */ |
137 | char *lua_lasttext (void); /* from "lua.lex" module */ | ||
138 | int lua_parse (void); /* from "lua.stx" module */ | 136 | int lua_parse (void); /* from "lua.stx" module */ |
139 | void lua_type (void); | 137 | void lua_type (void); |
140 | void lua_obj2number (void); | 138 | void lua_obj2number (void); |