From 73428b2daf892400348c71bfeda6c3092db91738 Mon Sep 17 00:00:00 2001 From: sin Date: Thu, 4 Dec 2014 15:03:45 +0000 Subject: Style fix --- sinit.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/sinit.c b/sinit.c index e338f35..eb834f6 100644 --- a/sinit.c +++ b/sinit.c @@ -9,18 +9,18 @@ #define LEN(x) (sizeof (x) / sizeof *(x)) -static void sigpoweroff(void); -static void sigreap(void); -static void sigreboot(void); +static void poweroff(void); +static void reap(void); +static void reboot(void); static void spawn(char *const []); static struct { int sig; void (*handler)(void); } sigmap[] = { - { SIGUSR1, sigpoweroff }, - { SIGCHLD, sigreap }, - { SIGINT, sigreboot }, + { SIGUSR1, poweroff }, + { SIGCHLD, reap }, + { SIGINT, reboot }, }; #include "config.h" @@ -53,20 +53,20 @@ main(void) } static void -sigpoweroff(void) +poweroff(void) { spawn(rcpoweroffcmd); } static void -sigreap(void) +reap(void) { while (waitpid(-1, NULL, WNOHANG) > 0) ; } static void -sigreboot(void) +reboot(void) { spawn(rcrebootcmd); } -- cgit v1.2.3-54-g00ecf