minix/lib/libsys/sys_stime.c

13 lines
184 B
C
Raw Normal View History

#include "syslib.h"
2012-03-25 20:25:53 +02:00
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);
}