aboutsummaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1993-12-22 19:15:16 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1993-12-22 19:15:16 -0200
commitf65ebced503d321852395e8ac8ad71d68cbb60c9 (patch)
tree2fade51fb35709d3048455f83d14ad30c05aa43f /opcode.h
parent72f67fa810715220c1134a345903146569417190 (diff)
downloadlua-f65ebced503d321852395e8ac8ad71d68cbb60c9.tar.gz
lua-f65ebced503d321852395e8ac8ad71d68cbb60c9.tar.bz2
lua-f65ebced503d321852395e8ac8ad71d68cbb60c9.zip
eliminacao do tipo e funcoes relacionadas com Unput
Diffstat (limited to 'opcode.h')
-rw-r--r--opcode.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/opcode.h b/opcode.h
index e7d505f3..c3304a64 100644
--- a/opcode.h
+++ b/opcode.h
@@ -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
83typedef void (*Cfunction) (void); 83typedef void (*Cfunction) (void);
84typedef int (*Input) (void); 84typedef int (*Input) (void);
85typedef void (*Unput) (int );
86 85
87typedef union 86typedef union
88{ 87{
@@ -132,9 +131,8 @@ int lua_execute (Byte *pc);
132void lua_markstack (void); 131void lua_markstack (void);
133char *lua_strdup (char *l); 132char *lua_strdup (char *l);
134 133
135void lua_setinput (Input fn); /* from "lua.lex" module */ 134void lua_setinput (Input fn); /* from "lex.c" module */
136void lua_setunput (Unput fn); /* from "lua.lex" module */ 135char *lua_lasttext (void); /* from "lex.c" module */
137char *lua_lasttext (void); /* from "lua.lex" module */
138int lua_parse (void); /* from "lua.stx" module */ 136int lua_parse (void); /* from "lua.stx" module */
139void lua_type (void); 137void lua_type (void);
140void lua_obj2number (void); 138void lua_obj2number (void);