panic() cleanup.
[minix.git] / lib / libsys / sys_stime.c
blob94034e12acda58f59c173e5b4be6c66f3d6befc0
1 #include "syslib.h"
3 PUBLIC int sys_stime(boottime)
4 time_t boottime; /* New boottime */
6 message m;
7 int r;
9 m.T_BOOTTIME = boottime;
10 r = _kernel_call(SYS_STIME, &m);
11 return(r);