Oops. Since dirent.h depends on BB_FEATURE_SH_TAB_COMPLETION, put it
[oweals/busybox.git] / poweroff.c
index 126a0fb9496e81fc08c8079127a7bc7a2714f0fb..007099d4d298e12696421fcb838b61a3cf99aa2f 100644 (file)
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <signal.h>
 
 extern int poweroff_main(int argc, char **argv)
 {
 #ifdef BB_FEATURE_LINUXRC
        /* don't assume init's pid == 1 */
-       return(kill(*(findPidByName("init")), SIGUSR2));
+       return(kill(*(find_pid_by_name("init")), SIGUSR2));
 #else
        return(kill(1, SIGUSR2));
 #endif