libs/iwinfo: make lua wrapper functions static
authorJo-Philipp Wich <jow@openwrt.org>
Tue, 11 Aug 2009 14:20:57 +0000 (14:20 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Tue, 11 Aug 2009 14:20:57 +0000 (14:20 +0000)
libs/iwinfo/src/iwinfo_lualib.c
libs/iwinfo/src/iwinfo_lualib.h

index 66c735b..3325463 100644 (file)
@@ -19,7 +19,7 @@
 #include "iwinfo_lualib.h"
 
 /* Determine type */
 #include "iwinfo_lualib.h"
 
 /* Determine type */
-int iwinfo_L_type(lua_State *L)
+static int iwinfo_L_type(lua_State *L)
 {
        const char *ifname = luaL_checkstring(L, 1);
 
 {
        const char *ifname = luaL_checkstring(L, 1);
 
@@ -39,7 +39,7 @@ int iwinfo_L_type(lua_State *L)
 }
 
 /* Wrapper for assoclist */
 }
 
 /* Wrapper for assoclist */
-int iwinfo_L_assoclist(lua_State *L, int (*func)(const char *, char *, int *))
+static int iwinfo_L_assoclist(lua_State *L, int (*func)(const char *, char *, int *))
 {
        int i, len;
        char rv[IWINFO_BUFSIZE];
 {
        int i, len;
        char rv[IWINFO_BUFSIZE];
index 9840466..ca1a442 100644 (file)
@@ -35,7 +35,7 @@
        { #op, iwinfo_L_##type##_##op }
 
 #define LUA_WRAP_INT(type,op)                                                  \
        { #op, iwinfo_L_##type##_##op }
 
 #define LUA_WRAP_INT(type,op)                                                  \
-       int iwinfo_L_##type##_##op(lua_State *L)                        \
+       static int iwinfo_L_##type##_##op(lua_State *L)         \
        {                                                                                                       \
                const char *ifname = luaL_checkstring(L, 1);    \
                int rv;                                                                                 \
        {                                                                                                       \
                const char *ifname = luaL_checkstring(L, 1);    \
                int rv;                                                                                 \
@@ -47,7 +47,7 @@
        }
 
 #define LUA_WRAP_STRING(type,op)                                               \
        }
 
 #define LUA_WRAP_STRING(type,op)                                               \
-       int iwinfo_L_##type##_##op(lua_State *L)                        \
+       static int iwinfo_L_##type##_##op(lua_State *L)         \
        {                                                                                                       \
                const char *ifname = luaL_checkstring(L, 1);    \
                char rv[IWINFO_BUFSIZE];                                                \
        {                                                                                                       \
                const char *ifname = luaL_checkstring(L, 1);    \
                char rv[IWINFO_BUFSIZE];                                                \
@@ -60,7 +60,7 @@
        }
 
 #define LUA_WRAP_ASSOCLIST(type)                                               \
        }
 
 #define LUA_WRAP_ASSOCLIST(type)                                               \
-       int iwinfo_L_##type##_assoclist(lua_State *L)           \
+       static int iwinfo_L_##type##_assoclist(lua_State *L)\
        {                                                                                                       \
                return iwinfo_L_assoclist(L,                                    \
                        type##_get_assoclist);                                          \
        {                                                                                                       \
                return iwinfo_L_assoclist(L,                                    \
                        type##_get_assoclist);                                          \