summaryrefslogtreecommitdiff
path: root/sys/modules/lua
diff options
context:
space:
mode:
authorlneto <lneto@NetBSD.org>2014-07-19 17:20:02 +0000
committerlneto <lneto@NetBSD.org>2014-07-19 17:20:02 +0000
commitf2034ed23da4416cc1f1ef506826955ec92e6aad (patch)
tree6f61688148c4cadb76b537844e5c7778250c0fc2 /sys/modules/lua
parent3a770862690d5cae1e32a9c3bcc5219a379e5051 (diff)
lua(4): uniformed the KPI name space using 'klua_' prefix
Diffstat (limited to 'sys/modules/lua')
-rw-r--r--sys/modules/lua/lua.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/modules/lua/lua.c b/sys/modules/lua/lua.c
index 5e4371f4aa8..6aed4cc3153 100644
--- a/sys/modules/lua/lua.c
+++ b/sys/modules/lua/lua.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lua.c,v 1.10 2014/07/19 17:14:40 lneto Exp $ */
+/* $NetBSD: lua.c,v 1.11 2014/07/19 17:20:02 lneto Exp $ */
/*
* Copyright (c) 2014 by Lourival Vieira Neto <lneto@NetBSD.org>.
@@ -588,7 +588,7 @@ lua_maxcount(lua_State *L, lua_Debug *d)
}
int
-lua_mod_register(const char *name, lua_CFunction open)
+klua_mod_register(const char *name, lua_CFunction open)
{
struct lua_module *m;
@@ -606,7 +606,7 @@ lua_mod_register(const char *name, lua_CFunction open)
}
int
-lua_mod_unregister(const char *name)
+klua_mod_unregister(const char *name)
{
struct lua_module *m;