diff options
Diffstat (limited to 'src/minutils/s6-poweroff.c')
-rw-r--r-- | src/minutils/s6-poweroff.c | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/src/minutils/s6-poweroff.c b/src/minutils/s6-poweroff.c index b3576b3..f9f7747 100644 --- a/src/minutils/s6-poweroff.c +++ b/src/minutils/s6-poweroff.c @@ -1,13 +1,7 @@ /* ISC license. */ -#include <unistd.h> -#include <sys/reboot.h> -#include <skalibs/strerr2.h> - -int main () -{ - PROG = "s6-poweroff" ; - sync() ; - reboot(RB_POWER_OFF) ; - strerr_diefu1sys(111, "reboot()") ; -} +#undef PROGNAME +#define PROGNAME "s6-poweroff" +#undef WHATDEFAULT +#define WHATDEFAULT 2 +#include "hpr.c" |