aboutsummaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
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);