aboutsummaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-12-21 14:14:04 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-12-21 14:14:04 -0200
commit27ae8432b6125a56b0bb31651de8cebc1b30353f (patch)
treef2757ebd2a2154b4273975c4973ccbe509640c4f /opcode.h
parent415ee250b5b544c91157a037a1e3c4a8f0b6cc4c (diff)
downloadlua-27ae8432b6125a56b0bb31651de8cebc1b30353f.tar.gz
lua-27ae8432b6125a56b0bb31651de8cebc1b30353f.tar.bz2
lua-27ae8432b6125a56b0bb31651de8cebc1b30353f.zip
names generated by yacc (starting with "yy") are changed to start with
"luaY_", to avoid name clashes with hosts using yacc.
Diffstat (limited to 'opcode.h')
-rw-r--r--opcode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/opcode.h b/opcode.h
index e2741108..f99c0073 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.13 1995/10/17 11:58:41 roberto Exp roberto $ 3** $Id: opcode.h,v 3.14 1995/10/25 13:05:51 roberto Exp roberto $
4*/ 4*/
5 5
6#ifndef opcode_h 6#ifndef opcode_h
@@ -146,7 +146,7 @@ char *lua_strdup (char *l);
146 146
147void lua_setinput (Input fn); /* from "lex.c" module */ 147void lua_setinput (Input fn); /* from "lex.c" module */
148char *lua_lasttext (void); /* from "lex.c" module */ 148char *lua_lasttext (void); /* from "lex.c" module */
149int yylex (void); /* from "lex.c" module */ 149int luaY_lex (void); /* from "lex.c" module */
150void lua_parse (TFunc *tf); /* from "lua.stx" module */ 150void lua_parse (TFunc *tf); /* from "lua.stx" module */
151void luaI_codedebugline (int line); /* from "lua.stx" module */ 151void luaI_codedebugline (int line); /* from "lua.stx" module */
152void lua_travstack (int (*fn)(Object *)); 152void lua_travstack (int (*fn)(Object *));