diff options
Diffstat (limited to 'src/plugin-luaregex.cc')
-rw-r--r-- | src/plugin-luaregex.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/plugin-luaregex.cc b/src/plugin-luaregex.cc new file mode 100644 index 0000000..694738c --- /dev/null +++ b/src/plugin-luaregex.cc @@ -0,0 +1,9 @@ +#include <LuaRegex.h> + +extern "C" { + +void init_plugin(Lua * L) { + LuaRegex::pushstatics(L); +} + +} |