aboutsummaryrefslogtreecommitdiff
path: root/vendor/lua/5.3/include/lua.hpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-04-05 16:30:08 +0100
committergingerBill <bill@gingerbill.org>2023-04-05 16:30:08 +0100
commit4dcf253330f47d7bb5b52364a113945842ca490a (patch)
treed6b8abb9af1ef7eba4b03bee6f57ad23ac1b8151 /vendor/lua/5.3/include/lua.hpp
parent012f386057964c9afde4e948bc18d9b8b0b7b8e5 (diff)
Add `vendor:lua/5.3`
Diffstat (limited to 'vendor/lua/5.3/include/lua.hpp')
-rw-r--r--vendor/lua/5.3/include/lua.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/lua/5.3/include/lua.hpp b/vendor/lua/5.3/include/lua.hpp
new file mode 100644
index 000000000..ec417f594
--- /dev/null
+++ b/vendor/lua/5.3/include/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"
+}