etc/services - sync with NetBSD-8
[minix.git] / minix / lib / libc / sys / reboot.c
blob54cf580ed65acd18b64e0d27e209bfd7edcc3d4c
1 /* reboot.c
3 author: Edvard Tuinder v892231@si.hhs.NL
4 */
6 #include <sys/cdefs.h>
7 #include <lib.h>
8 #include <unistd.h>
9 #include "namespace.h"
11 #include <string.h>
12 #include <sys/reboot.h>
14 int reboot(int how, char *bootstr)
16 message m;
18 memset(&m, 0, sizeof(m));
19 m.m_lc_pm_reboot.how = how;
20 return _syscall(PM_PROC_NR, PM_REBOOT, &m);