1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-05 21:16:33 +00:00

Removed old unused procedure.

This commit is contained in:
batrick
2008-09-03 22:16:59 +00:00
parent 801e537697
commit 1d539a2b1c

View File

@@ -71,14 +71,6 @@ static int get_flags (lua_State *L, const flags_pair *arr)
return 1;
}
static void createmeta(lua_State *L, const char *name)
{
(void)luaL_newmetatable(L, name); /* create new metatable */
lua_pushliteral(L, "__index");
lua_pushvalue(L, -2); /* push metatable */
lua_rawset(L, -3); /* metatable.__index = metatable */
}
const char pcre_handle[] = "pcre_regex_handle";
const char pcre_typename[] = "pcre_regex";