Drop main() prototype. Syncs with NetBSD-8
[minix.git] / minix / kernel / system / do_stime.c
blob8a5ae929c7938fece1b8f790079634ec7269dd41
1 /* The kernel call implemented in this file:
2 * m_type: SYS_STIME
4 * The parameters for this kernel call are:
5 * m_lsys_krn_sys_stime.boot_time
6 */
8 #include "kernel/system.h"
10 #include <minix/endpoint.h>
12 /*===========================================================================*
13 * do_stime *
14 *===========================================================================*/
15 int do_stime(struct proc * caller, message * m_ptr)
17 set_boottime(m_ptr->m_lsys_krn_sys_stime.boot_time);
18 return(OK);