diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-06 15:17:33 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-06 15:17:33 -0300 |
commit | 000d081fd0966ba8f39178186d30319df37d631f (patch) | |
tree | 9260d75fcdf08fbf118330dc87316a6b52770c61 /lopcodes.h | |
parent | 65d66ba27592271cda71caefe231f9ee2d909d5c (diff) | |
download | lua-000d081fd0966ba8f39178186d30319df37d631f.tar.gz lua-000d081fd0966ba8f39178186d30319df37d631f.tar.bz2 lua-000d081fd0966ba8f39178186d30319df37d631f.zip |
warnings from other compilers
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -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) | 220 | extern const char *const luaP_opnames[]; /* opcode names */ |
221 | */ | 221 | #endif |
222 | extern const char *const luaP_opnames[]; | ||
223 | 222 | ||
224 | 223 | ||
225 | 224 | ||