svn commit: trunk/busybox: networking shell sysklogd
vodz at busybox.net
vodz at busybox.net
Thu Sep 22 12:59:56 UTC 2005
Author: vodz
Date: 2005-09-22 05:59:26 -0700 (Thu, 22 Sep 2005)
New Revision: 11574
Log:
more remove lost exported
Modified:
trunk/busybox/networking/ifupdown.c
trunk/busybox/shell/cmdedit.c
trunk/busybox/sysklogd/syslogd.c
Changeset:
Modified: trunk/busybox/networking/ifupdown.c
===================================================================
--- trunk/busybox/networking/ifupdown.c 2005-09-22 11:11:11 UTC (rev 11573)
+++ trunk/busybox/networking/ifupdown.c 2005-09-22 12:59:26 UTC (rev 11574)
@@ -381,7 +381,7 @@
{ "static", static_up_ipx, static_down_ipx, },
};
-struct address_family_t addr_ipx = {
+static struct address_family_t addr_ipx = {
"ipx",
sizeof(methods_ipx) / sizeof(struct method_t),
methods_ipx
Modified: trunk/busybox/shell/cmdedit.c
===================================================================
--- trunk/busybox/shell/cmdedit.c 2005-09-22 11:11:11 UTC (rev 11573)
+++ trunk/busybox/shell/cmdedit.c 2005-09-22 12:59:26 UTC (rev 11574)
@@ -1263,7 +1263,7 @@
vi_mode = viflag;
}
-void
+static void
vi_Word_motion(char *command, int eat)
{
while (cursor < len && !isspace(command[cursor]))
@@ -1272,7 +1272,7 @@
input_forward();
}
-void
+static void
vi_word_motion(char *command, int eat)
{
if (isalnum(command[cursor]) || command[cursor] == '_') {
@@ -1294,7 +1294,7 @@
input_forward();
}
-void
+static void
vi_End_motion(char *command)
{
input_forward();
@@ -1304,7 +1304,7 @@
input_forward();
}
-void
+static void
vi_end_motion(char *command)
{
if (cursor >= len-1)
@@ -1326,7 +1326,7 @@
}
}
-void
+static void
vi_Back_motion(char *command)
{
while (cursor > 0 && isspace(command[cursor-1]))
@@ -1335,7 +1335,7 @@
input_backward(1);
}
-void
+static void
vi_back_motion(char *command)
{
if (cursor <= 0)
Modified: trunk/busybox/sysklogd/syslogd.c
===================================================================
--- trunk/busybox/sysklogd/syslogd.c 2005-09-22 11:11:11 UTC (rev 11573)
+++ trunk/busybox/sysklogd/syslogd.c 2005-09-22 12:59:26 UTC (rev 11574)
@@ -150,7 +150,7 @@
}
-void ipcsyslog_cleanup(void)
+static void ipcsyslog_cleanup(void)
{
printf("Exiting Syslogd!\n");
if (shmid != -1) {
@@ -165,7 +165,7 @@
}
}
-void ipcsyslog_init(void)
+static void ipcsyslog_init(void)
{
if (buf == NULL) {
if ((shmid = shmget(KEY_ID, shm_size, IPC_CREAT | 1023)) == -1) {
@@ -195,7 +195,7 @@
}
/* write message to buffer */
-void circ_message(const char *msg)
+static void circ_message(const char *msg)
{
int l = strlen(msg) + 1; /* count the whole message w/ '\0' included */
More information about the busybox-cvs
mailing list