xref: /minix3/minix/lib/libsys/sys_stime.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1*433d6423SLionel Sambuc #include "syslib.h"
2*433d6423SLionel Sambuc 
sys_stime(boottime)3*433d6423SLionel Sambuc int sys_stime(boottime)
4*433d6423SLionel Sambuc time_t boottime;		/* New boottime */
5*433d6423SLionel Sambuc {
6*433d6423SLionel Sambuc   message m;
7*433d6423SLionel Sambuc   int r;
8*433d6423SLionel Sambuc 
9*433d6423SLionel Sambuc   m.m_lsys_krn_sys_stime.boot_time = boottime;
10*433d6423SLionel Sambuc   r = _kernel_call(SYS_STIME, &m);
11*433d6423SLionel Sambuc   return(r);
12*433d6423SLionel Sambuc }
13