diff options
author | Rui Paulo <rpaulo@FreeBSD.org> | 2015-03-24 00:00:59 +0000 |
---|---|---|
committer | Rui Paulo <rpaulo@FreeBSD.org> | 2015-03-24 00:00:59 +0000 |
commit | 52bff0d770d4359f702d9922b8608ad23351ea89 (patch) | |
tree | a54637781398b630824152ae05672536c0fa8341 /src/lua.hpp |
Notes
Diffstat (limited to 'src/lua.hpp')
-rw-r--r-- | src/lua.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lua.hpp b/src/lua.hpp new file mode 100644 index 0000000000000..ec417f59469c8 --- /dev/null +++ b/src/lua.hpp @@ -0,0 +1,9 @@ +// lua.hpp +// Lua header files for C++ +// <<extern "C">> not supplied automatically because Lua also compiles as C++ + +extern "C" { +#include "lua.h" +#include "lualib.h" +#include "lauxlib.h" +} |