Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lua.hpp « src « lua-5.3 - github.com/torch/luajit-rocks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec417f59469c8672a13a726afe6186cccbe54895 (plain)
1
2
3
4
5
6
7
8
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"
}