Static-ify a variable. make du work with all the human-readable variants
[oweals/busybox.git] / reboot.c
index bde8dbd7750d7dc1511f80c9f1ed141e94a81fce..3e5f2382c1cf363e1205e5452f4fa08598c21486 100644 (file)
--- a/reboot.c
+++ b/reboot.c
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <signal.h>
 
 extern int reboot_main(int argc, char **argv)
 {
 #ifdef BB_FEATURE_LINUXRC
        /* don't assume init's pid == 1 */
-       return(kill(*(findPidByName("init")), SIGINT));
+       return(kill(*(find_pid_by_name("init")), SIGINT));
 #else
        return(kill(1, SIGINT));
 #endif