1
0
mirror of https://github.com/fluencelabs/redis synced 2025-03-20 09:30:55 +00:00

10 lines
191 B
C++
Raw Normal View History

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