add lua-5.3.2

This commit is contained in:
Robin Gareus
2016-02-03 21:34:08 +01:00
parent 25a24e0805
commit c8973f67a6
62 changed files with 23659 additions and 0 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"
}