Update Lua to upstream 5.3.5

This commit is contained in:
Robin Gareus
2019-10-29 05:36:24 +01:00
parent 814272bbac
commit 130211a4bd
65 changed files with 184 additions and 141 deletions

View File

@@ -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"
}