diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-11-02 17:19:04 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-11-02 17:19:04 -0200 |
commit | 28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9 (patch) | |
tree | eaac6c45a621d7f0176ce8f57df3cca1ca8d30f6 /lopcodes.c | |
parent | c25072a246eddff711ebec8e4acce9593bc5ff70 (diff) | |
download | lua-28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9.tar.gz lua-28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9.tar.bz2 lua-28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9.zip |
added include for 'lprefix.h', for stuff that must be added before
any other header file
Diffstat (limited to 'lopcodes.c')
-rw-r--r-- | lopcodes.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,13 +1,14 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.c,v 1.52 2013/12/18 14:12:03 roberto Exp roberto $ | 2 | ** $Id: lopcodes.c,v 1.53 2013/12/30 20:47:58 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 | */ |
6 | 6 | ||
7 | |||
8 | #define lopcodes_c | 7 | #define lopcodes_c |
9 | #define LUA_CORE | 8 | #define LUA_CORE |
10 | 9 | ||
10 | #include "lprefix.h" | ||
11 | |||
11 | 12 | ||
12 | #include "lopcodes.h" | 13 | #include "lopcodes.h" |
13 | 14 | ||