diff options
author | Mike Pall <mike> | 2009-12-08 19:49:20 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2009-12-08 19:49:20 +0100 |
commit | 1d1fed48a002dfc0919135911057ebc255a53e0a (patch) | |
tree | c5c6643908374bb8f02f4c7691332d32f6645986 /src/lua.hpp | |
parent | 55b16959717084884fd4a0cbae6d19e3786c20c7 (diff) | |
download | luajit-1d1fed48a002dfc0919135911057ebc255a53e0a.tar.gz luajit-1d1fed48a002dfc0919135911057ebc255a53e0a.tar.bz2 luajit-1d1fed48a002dfc0919135911057ebc255a53e0a.zip |
RELEASE LuaJIT-2.0.0-beta2v2.0.0-beta2
Diffstat (limited to 'src/lua.hpp')
-rw-r--r-- | src/lua.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lua.hpp b/src/lua.hpp index ec417f59..07e9002d 100644 --- a/src/lua.hpp +++ b/src/lua.hpp | |||
@@ -1,9 +1,9 @@ | |||
1 | // lua.hpp | 1 | // C++ wrapper for LuaJIT header files. |
2 | // Lua header files for C++ | ||
3 | // <<extern "C">> not supplied automatically because Lua also compiles as C++ | ||
4 | 2 | ||
5 | extern "C" { | 3 | extern "C" { |
6 | #include "lua.h" | 4 | #include "lua.h" |
7 | #include "lualib.h" | ||
8 | #include "lauxlib.h" | 5 | #include "lauxlib.h" |
6 | #include "lualib.h" | ||
7 | #include "luajit.h" | ||
9 | } | 8 | } |
9 | |||