aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-09 16:10:58 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-09 16:10:58 -0200
commit6b387e01b23a36c70e3fee94ffa3a796a2dc3596 (patch)
treecfb604dfc9c8c25387b8dc03c58219b00e62d9aa
parentd0780fa16d0365cfacf1c9a4ff58126a92c12e40 (diff)
downloadlua-6b387e01b23a36c70e3fee94ffa3a796a2dc3596.tar.gz
lua-6b387e01b23a36c70e3fee94ffa3a796a2dc3596.tar.bz2
lua-6b387e01b23a36c70e3fee94ffa3a796a2dc3596.zip
lua_parse has a different interface
-rw-r--r--opcode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/opcode.h b/opcode.h
index beb629a1..854651f8 100644
--- a/opcode.h
+++ b/opcode.h
@@ -1,6 +1,6 @@
1/* 1/*
2** TeCGraf - PUC-Rio 2** TeCGraf - PUC-Rio
3** $Id: opcode.h,v 3.4 1994/11/07 15:20:56 roberto Exp roberto $ 3** $Id: opcode.h,v 3.5 1994/11/07 16:34:44 roberto Exp roberto $
4*/ 4*/
5 5
6#ifndef opcode_h 6#ifndef opcode_h
@@ -158,7 +158,7 @@ char *lua_strdup (char *l);
158void lua_setinput (Input fn); /* from "lex.c" module */ 158void lua_setinput (Input fn); /* from "lex.c" module */
159char *lua_lasttext (void); /* from "lex.c" module */ 159char *lua_lasttext (void); /* from "lex.c" module */
160int yylex (void); /* from "lex.c" module */ 160int yylex (void); /* from "lex.c" module */
161Byte *lua_parse (void); /* from "lua.stx" module */ 161void lua_parse (Byte **code); /* from "lua.stx" module */
162void lua_travstack (void (*fn)(Object *)); 162void lua_travstack (void (*fn)(Object *));
163void luaI_setfallback (void); 163void luaI_setfallback (void);
164Object *luaI_Address (lua_Object o); 164Object *luaI_Address (lua_Object o);