From 1fc1af820378c2987a409893d496e11beff6c718 Mon Sep 17 00:00:00 2001 From: bjorn Date: Fri, 25 Dec 2020 12:22:10 -0700 Subject: [PATCH] rm LOVR_EXPORT from luaopen_lovr definition; It's only needed on the declaration. --- src/api/l_lovr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/l_lovr.c b/src/api/l_lovr.c index e87e6cfd..39b5c261 100644 --- a/src/api/l_lovr.c +++ b/src/api/l_lovr.c @@ -64,7 +64,7 @@ static const luaL_Reg lovr[] = { { NULL, NULL } }; -LOVR_EXPORT int luaopen_lovr(lua_State* L) { +int luaopen_lovr(lua_State* L) { lua_newtable(L); luax_register(L, lovr); return 1;