aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-22 12:59:26 +0000
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-22 12:59:26 +0000
commite4baaa2d2795c14775b26213d143e9f9f65e4d54 (patch)
treef698cdfc8c2ad2918174461fa533bab555172f78
parent007a01164705f3b086f5f4633e63a32d6c6e16c6 (diff)
downloadbusybox-w32-e4baaa2d2795c14775b26213d143e9f9f65e4d54.tar.gz
busybox-w32-e4baaa2d2795c14775b26213d143e9f9f65e4d54.tar.bz2
busybox-w32-e4baaa2d2795c14775b26213d143e9f9f65e4d54.zip
more remove lost exported
-rw-r--r--networking/ifupdown.c2
-rw-r--r--shell/cmdedit.c12
-rw-r--r--sysklogd/syslogd.c6
3 files changed, 10 insertions, 10 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c
index e07167aef..68fdd37d4 100644
--- a/networking/ifupdown.c
+++ b/networking/ifupdown.c
@@ -381,7 +381,7 @@ static struct method_t methods_ipx[] = {
381 { "static", static_up_ipx, static_down_ipx, }, 381 { "static", static_up_ipx, static_down_ipx, },
382}; 382};
383 383
384struct address_family_t addr_ipx = { 384static struct address_family_t addr_ipx = {
385 "ipx", 385 "ipx",
386 sizeof(methods_ipx) / sizeof(struct method_t), 386 sizeof(methods_ipx) / sizeof(struct method_t),
387 methods_ipx 387 methods_ipx
diff --git a/shell/cmdedit.c b/shell/cmdedit.c
index 6e3ae07f9..c4cb9d9c4 100644
--- a/shell/cmdedit.c
+++ b/shell/cmdedit.c
@@ -1263,7 +1263,7 @@ void setvimode ( int viflag )
1263 vi_mode = viflag; 1263 vi_mode = viflag;
1264} 1264}
1265 1265
1266void 1266static void
1267vi_Word_motion(char *command, int eat) 1267vi_Word_motion(char *command, int eat)
1268{ 1268{
1269 while (cursor < len && !isspace(command[cursor])) 1269 while (cursor < len && !isspace(command[cursor]))
@@ -1272,7 +1272,7 @@ vi_Word_motion(char *command, int eat)
1272 input_forward(); 1272 input_forward();
1273} 1273}
1274 1274
1275void 1275static void
1276vi_word_motion(char *command, int eat) 1276vi_word_motion(char *command, int eat)
1277{ 1277{
1278 if (isalnum(command[cursor]) || command[cursor] == '_') { 1278 if (isalnum(command[cursor]) || command[cursor] == '_') {
@@ -1294,7 +1294,7 @@ vi_word_motion(char *command, int eat)
1294 input_forward(); 1294 input_forward();
1295} 1295}
1296 1296
1297void 1297static void
1298vi_End_motion(char *command) 1298vi_End_motion(char *command)
1299{ 1299{
1300 input_forward(); 1300 input_forward();
@@ -1304,7 +1304,7 @@ vi_End_motion(char *command)
1304 input_forward(); 1304 input_forward();
1305} 1305}
1306 1306
1307void 1307static void
1308vi_end_motion(char *command) 1308vi_end_motion(char *command)
1309{ 1309{
1310 if (cursor >= len-1) 1310 if (cursor >= len-1)
@@ -1326,7 +1326,7 @@ vi_end_motion(char *command)
1326 } 1326 }
1327} 1327}
1328 1328
1329void 1329static void
1330vi_Back_motion(char *command) 1330vi_Back_motion(char *command)
1331{ 1331{
1332 while (cursor > 0 && isspace(command[cursor-1])) 1332 while (cursor > 0 && isspace(command[cursor-1]))
@@ -1335,7 +1335,7 @@ vi_Back_motion(char *command)
1335 input_backward(1); 1335 input_backward(1);
1336} 1336}
1337 1337
1338void 1338static void
1339vi_back_motion(char *command) 1339vi_back_motion(char *command)
1340{ 1340{
1341 if (cursor <= 0) 1341 if (cursor <= 0)
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index 8f9d75cc6..3a8e519fe 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -150,7 +150,7 @@ static inline void sem_down(int semid)
150} 150}
151 151
152 152
153void ipcsyslog_cleanup(void) 153static void ipcsyslog_cleanup(void)
154{ 154{
155 printf("Exiting Syslogd!\n"); 155 printf("Exiting Syslogd!\n");
156 if (shmid != -1) { 156 if (shmid != -1) {
@@ -165,7 +165,7 @@ void ipcsyslog_cleanup(void)
165 } 165 }
166} 166}
167 167
168void ipcsyslog_init(void) 168static void ipcsyslog_init(void)
169{ 169{
170 if (buf == NULL) { 170 if (buf == NULL) {
171 if ((shmid = shmget(KEY_ID, shm_size, IPC_CREAT | 1023)) == -1) { 171 if ((shmid = shmget(KEY_ID, shm_size, IPC_CREAT | 1023)) == -1) {
@@ -195,7 +195,7 @@ void ipcsyslog_init(void)
195} 195}
196 196
197/* write message to buffer */ 197/* write message to buffer */
198void circ_message(const char *msg) 198static void circ_message(const char *msg)
199{ 199{
200 int l = strlen(msg) + 1; /* count the whole message w/ '\0' included */ 200 int l = strlen(msg) + 1; /* count the whole message w/ '\0' included */
201 201