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
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
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"
}