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