- fix IMA compile error i introduced when adding this untested snippet.

This commit is contained in:
Bernhard Reutner-Fischer
2006-05-31 18:57:56 +00:00
parent dac033e98c
commit 9a5686b605
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@
#include "busybox.h" #include "busybox.h"
#include "init_shared.h" #include "init_shared.h"
const char * const init_sending_format = "Sending SIG%s to all processes.";
#ifndef CONFIG_INIT #ifndef CONFIG_INIT
const char * const bb_shutdown_format = "\r%s\n"; const char * const bb_shutdown_format = "\r%s\n";
int bb_shutdown_system(unsigned long magic) int bb_shutdown_system(unsigned long magic)

View File

@ -1,4 +1,4 @@
extern int kill_init(int sig); extern int kill_init(int sig);
extern int bb_shutdown_system(unsigned long magic); extern int bb_shutdown_system(unsigned long magic);
const char * const init_sending_format = "Sending SIG%s to all processes."; extern const char * const init_sending_format;