aboutsummaryrefslogtreecommitdiff
path: root/nerv.c
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2015-05-21 21:38:52 +0800
committerDeterminant <ted.sybil@gmail.com>2015-05-21 21:38:52 +0800
commit7503135d355275a17128f8a4c897739669fcd646 (patch)
treeaae3d1201cdcd835753e7a539871258237d53c0a /nerv.c
parent32e5174ac5a57307d9e46bb1e02d3031a5afea4e (diff)
remove useless macro
Diffstat (limited to 'nerv.c')
-rw-r--r--nerv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nerv.c b/nerv.c
index 42b50b4..aa808c3 100644
--- a/nerv.c
+++ b/nerv.c
@@ -5,7 +5,7 @@
extern void nerv_point_init(lua_State *L);
extern void nerv_matrix_init(lua_State *L);
-LUALIB_API int luaopen_libnerv(lua_State *L) {
+int luaopen_libnerv(lua_State *L) {
lua_newtable(L);
lua_pushvalue(L, -1);
lua_setfield(L, LUA_GLOBALSINDEX, "nerv");