minix/lib/libsys/sys_stime.c
2012-03-25 21:58:14 +02:00

13 lines
184 B
C

#include "syslib.h"
int sys_stime(boottime)
time_t boottime; /* New boottime */
{
message m;
int r;
m.T_BOOTTIME = boottime;
r = _kernel_call(SYS_STIME, &m);
return(r);
}