summaryrefslogtreecommitdiff
path: root/src/lua.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua.hpp')
-rw-r--r--src/lua.hpp8
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
5extern "C" { 3extern "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