Drop main() prototype. Syncs with NetBSD-8
[minix.git] / minix / lib / libsys / sys_stime.c
bloba06a7a0a53f69689c0faa1dd317f392a210bfdac
1 #include "syslib.h"
3 int sys_stime(boottime)
4 time_t boottime; /* New boottime */
6 message m;
7 int r;
9 m.m_lsys_krn_sys_stime.boot_time = boottime;
10 r = _kernel_call(SYS_STIME, &m);
11 return(r);