mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 02:53:09 +00:00
11 lines
218 B
C++
11 lines
218 B
C++
// lua.hpp
|
|
// Lua header files for C++
|
|
// 'extern "C" not supplied automatically in lua.h and other headers
|
|
// because Lua also compiles as C++
|
|
|
|
extern "C" {
|
|
#include "lua.h"
|
|
#include "lualib.h"
|
|
#include "lauxlib.h"
|
|
}
|