diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-12-21 14:14:04 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-12-21 14:14:04 -0200 |
commit | 27ae8432b6125a56b0bb31651de8cebc1b30353f (patch) | |
tree | f2757ebd2a2154b4273975c4973ccbe509640c4f /opcode.h | |
parent | 415ee250b5b544c91157a037a1e3c4a8f0b6cc4c (diff) | |
download | lua-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.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.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 | ||
147 | void lua_setinput (Input fn); /* from "lex.c" module */ | 147 | void lua_setinput (Input fn); /* from "lex.c" module */ |
148 | char *lua_lasttext (void); /* from "lex.c" module */ | 148 | char *lua_lasttext (void); /* from "lex.c" module */ |
149 | int yylex (void); /* from "lex.c" module */ | 149 | int luaY_lex (void); /* from "lex.c" module */ |
150 | void lua_parse (TFunc *tf); /* from "lua.stx" module */ | 150 | void lua_parse (TFunc *tf); /* from "lua.stx" module */ |
151 | void luaI_codedebugline (int line); /* from "lua.stx" module */ | 151 | void luaI_codedebugline (int line); /* from "lua.stx" module */ |
152 | void lua_travstack (int (*fn)(Object *)); | 152 | void lua_travstack (int (*fn)(Object *)); |