X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=poweroff.c;h=007099d4d298e12696421fcb838b61a3cf99aa2f;hb=5165fbed639916e0fde15a827241b21981be7934;hp=126a0fb9496e81fc08c8079127a7bc7a2714f0fb;hpb=b610615be9aedfac07d1e01f12575707fa3a227c;p=oweals%2Fbusybox.git diff --git a/poweroff.c b/poweroff.c index 126a0fb94..007099d4d 100644 --- a/poweroff.c +++ b/poweroff.c @@ -21,14 +21,14 @@ * */ -#include "internal.h" +#include "busybox.h" #include 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