From 67276de2ce2281b13598d390c97505f94d0b032c Mon Sep 17 00:00:00 2001 From: dmiller Date: Mon, 12 Dec 2022 21:01:35 +0000 Subject: [PATCH] Add missing LUALIB_API declaration to nse_db --- nse_db.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nse_db.cc b/nse_db.cc index e268d59db..75da118c7 100644 --- a/nse_db.cc +++ b/nse_db.cc @@ -99,7 +99,7 @@ static int l_getprotbyname (lua_State *L) return 1; } -int luaopen_db (lua_State *L) +LUALIB_API int luaopen_db (lua_State *L) { static const luaL_Reg dblib [] = { {"mac2corp", l_mac2corp},