oops
diff --git a/init/init.c b/init/init.c
index 401cf69..a454ac5 100644
--- a/init/init.c
+++ b/init/init.c
@@ -190,6 +190,7 @@
 /* Function prototypes */
 static void delete_init_action(struct init_action *a);
 static int waitfor(const struct init_action *a);
+static void halt_signal(int sig);
 
 
 static void loop_forever(void)
@@ -723,6 +724,8 @@
 	for (a = init_action_list; a; a = tmp) {
 		tmp = a->next;
 		if (a->action & RESTART) {
+			struct stat sb;
+
 			shutdown_system();
 
 			/* unblock all signals, blocked in shutdown_system() */