xref: /freebsd/contrib/lua/src/lua.hpp (revision 8e3e3a7ae841ccf6f6ac30a2eeab85df5d7f04bc)
1*8e3e3a7aSWarner Losh // lua.hpp
2*8e3e3a7aSWarner Losh // Lua header files for C++
3*8e3e3a7aSWarner Losh // <<extern "C">> not supplied automatically because Lua also compiles as C++
4*8e3e3a7aSWarner Losh 
5*8e3e3a7aSWarner Losh extern "C" {
6*8e3e3a7aSWarner Losh #include "lua.h"
7*8e3e3a7aSWarner Losh #include "lualib.h"
8*8e3e3a7aSWarner Losh #include "lauxlib.h"
9*8e3e3a7aSWarner Losh }
10