diff options
author | "Vladimir N. Oleynik" | 2005-09-22 12:59:26 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" | 2005-09-22 12:59:26 +0000 |
commit | e4baaa2d2795c14775b26213d143e9f9f65e4d54 (patch) | |
tree | f698cdfc8c2ad2918174461fa533bab555172f78 /sysklogd | |
parent | 007a01164705f3b086f5f4633e63a32d6c6e16c6 (diff) | |
download | busybox-e4baaa2d2795c14775b26213d143e9f9f65e4d54.zip busybox-e4baaa2d2795c14775b26213d143e9f9f65e4d54.tar.gz |
more remove lost exported
Diffstat (limited to 'sysklogd')
-rw-r--r-- | sysklogd/syslogd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index 8f9d75c..3a8e519 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c @@ -150,7 +150,7 @@ static inline void sem_down(int semid) } -void ipcsyslog_cleanup(void) +static void ipcsyslog_cleanup(void) { printf("Exiting Syslogd!\n"); if (shmid != -1) { @@ -165,7 +165,7 @@ void ipcsyslog_cleanup(void) } } -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 @@ void ipcsyslog_init(void) } /* 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 */ |