summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-06 15:17:33 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-06 15:17:33 -0300
commit000d081fd0966ba8f39178186d30319df37d631f (patch)
tree9260d75fcdf08fbf118330dc87316a6b52770c61 /lopcodes.h
parent65d66ba27592271cda71caefe231f9ee2d909d5c (diff)
downloadlua-000d081fd0966ba8f39178186d30319df37d631f.tar.gz
lua-000d081fd0966ba8f39178186d30319df37d631f.tar.bz2
lua-000d081fd0966ba8f39178186d30319df37d631f.zip
warnings from other compilers
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/lopcodes.h b/lopcodes.h
index fbdec4cf..95b5b373 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.96 2002/05/06 15:51:41 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.97 2002/05/13 13:09:00 roberto Exp roberto $
3** Opcodes for Lua virtual machine 3** Opcodes for Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -216,10 +216,9 @@ extern const lu_byte luaP_opmodes[NUM_OPCODES];
216#define testOpMode(m, b) (luaP_opmodes[m] & (1 << (b))) 216#define testOpMode(m, b) (luaP_opmodes[m] & (1 << (b)))
217 217
218 218
219/* 219#ifdef LUA_OPNAMES
220** opcode names (only included when compiled with LUA_OPNAMES) 220extern const char *const luaP_opnames[]; /* opcode names */
221*/ 221#endif
222extern const char *const luaP_opnames[];
223 222
224 223
225 224