diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-09 16:10:58 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-09 16:10:58 -0200 |
commit | 6b387e01b23a36c70e3fee94ffa3a796a2dc3596 (patch) | |
tree | cfb604dfc9c8c25387b8dc03c58219b00e62d9aa | |
parent | d0780fa16d0365cfacf1c9a4ff58126a92c12e40 (diff) | |
download | lua-6b387e01b23a36c70e3fee94ffa3a796a2dc3596.tar.gz lua-6b387e01b23a36c70e3fee94ffa3a796a2dc3596.tar.bz2 lua-6b387e01b23a36c70e3fee94ffa3a796a2dc3596.zip |
lua_parse has a different interface
-rw-r--r-- | opcode.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); | |||
158 | void lua_setinput (Input fn); /* from "lex.c" module */ | 158 | void lua_setinput (Input fn); /* from "lex.c" module */ |
159 | char *lua_lasttext (void); /* from "lex.c" module */ | 159 | char *lua_lasttext (void); /* from "lex.c" module */ |
160 | int yylex (void); /* from "lex.c" module */ | 160 | int yylex (void); /* from "lex.c" module */ |
161 | Byte *lua_parse (void); /* from "lua.stx" module */ | 161 | void lua_parse (Byte **code); /* from "lua.stx" module */ |
162 | void lua_travstack (void (*fn)(Object *)); | 162 | void lua_travstack (void (*fn)(Object *)); |
163 | void luaI_setfallback (void); | 163 | void luaI_setfallback (void); |
164 | Object *luaI_Address (lua_Object o); | 164 | Object *luaI_Address (lua_Object o); |