blob: a06a7a0a53f69689c0faa1dd317f392a210bfdac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "syslib.h"
int sys_stime(boottime)
time_t boottime; /* New boottime */
{
message m;
int r;
m.m_lsys_krn_sys_stime.boot_time = boottime;
r = _kernel_call(SYS_STIME, &m);
return(r);
}
|