diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-10-22 13:01:50 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-10-22 13:01:50 +0000 |
commit | 8e98311e31de87f1f53f0f413708a30c331a5245 (patch) | |
tree | 215e1f882e7d8fb8e63c71a1ea78e8ba8fc0b75b /Build/source/libs/lua52/lua-5.2.3/src/lopcodes.h | |
parent | 771d6846ef35854ba72c4ff73b44d8706c50e301 (diff) |
Build lua52 as (possibly shared) Libtool library
git-svn-id: svn://tug.org/texlive/trunk@35423 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/lua52/lua-5.2.3/src/lopcodes.h')
-rw-r--r-- | Build/source/libs/lua52/lua-5.2.3/src/lopcodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/libs/lua52/lua-5.2.3/src/lopcodes.h b/Build/source/libs/lua52/lua-5.2.3/src/lopcodes.h index 51f57915455..50a55fa6119 100644 --- a/Build/source/libs/lua52/lua-5.2.3/src/lopcodes.h +++ b/Build/source/libs/lua52/lua-5.2.3/src/lopcodes.h @@ -269,7 +269,7 @@ enum OpArgMask { OpArgK /* argument is a constant or register/constant */ }; -LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES]; +LUA_API const lu_byte luaP_opmodes[NUM_OPCODES]; #define getOpMode(m) (cast(enum OpMode, luaP_opmodes[m] & 3)) #define getBMode(m) (cast(enum OpArgMask, (luaP_opmodes[m] >> 4) & 3)) @@ -278,7 +278,7 @@ LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES]; #define testTMode(m) (luaP_opmodes[m] & (1 << 7)) -LUAI_DDEC const char *const luaP_opnames[NUM_OPCODES+1]; /* opcode names */ +LUA_API const char *const luaP_opnames[NUM_OPCODES+1]; /* opcode names */ /* number of list items to accumulate before a SETLIST instruction */ |