proxmark3/liblua/lua.hpp
martin.holst@gmail.com ba8b5c173b Added lua 5.2 sources
2013-05-21 18:23:42 +00:00

10 lines
191 B
C++

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