www.nico.schottelius.org/software/cinit/browse_source/cinit-0.3pre6/util/msg_reboot.c
Nico Schottelius 423ba10303 import cinit from unix.schottelius.org
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
2009-09-16 12:53:45 +02:00

21 lines
364 B
C

/*
* (c) 2005 Nico Schottelius (nico-linux at schottelius.org)
* reboot/halt/poweroff/rescue
* part of cinit
*/
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <stdio.h>
#include "cinit.h"
/* we trust the caller */
int msg_reboot(char cmd)
{
if(!begin_msg(cmd)) return 0;
close(sock);
return 1;
}
/* clean for cinit-0.2 */