Changed names of functions in utility.c and all affected files, to make
compliant with the style guide. Everybody rebuild your tags file!
diff --git a/halt.c b/halt.c
index c3e2523..e875d04 100644
--- a/halt.c
+++ b/halt.c
@@ -28,7 +28,7 @@
 {
 #ifdef BB_FEATURE_LINUXRC
 	/* don't assume init's pid == 1 */
-	return(kill(*(findPidByName("init")), SIGUSR1));
+	return(kill(*(find_pid_by_name("init")), SIGUSR1));
 #else
 	return(kill(1, SIGUSR1));
 #endif