From 253655ae4b988f93ddfd1e7e06a50a0d57ea1978 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 4 Nov 1994 08:47:49 -0200 Subject: [PATCH] small corrections. --- opcode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opcode.h b/opcode.h index 4a35ca12..91982c10 100644 --- a/opcode.h +++ b/opcode.h @@ -1,6 +1,6 @@ /* ** TeCGraf - PUC-Rio -** $Id: opcode.h,v 2.4 1994/10/17 19:00:40 celes Exp roberto $ +** $Id: opcode.h,v 3.1 1994/11/02 20:30:53 roberto Exp roberto $ */ #ifndef opcode_h @@ -156,8 +156,8 @@ char *lua_strdup (char *l); void lua_setinput (Input fn); /* from "lex.c" module */ char *lua_lasttext (void); /* from "lex.c" module */ +int yylex (void); /* from "lex.c" module */ Byte *lua_parse (void); /* from "lua.stx" module */ -void lua_obj2number (void); void lua_travstack (void (*fn)(Object *)); #endif