13 lines
		
	
	
		
			197 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			197 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
| #include "syslib.h"
 | |
| 
 | |
| PUBLIC int sys_stime(boottime)
 | |
| time_t boottime;		/* New boottime */
 | |
| {
 | |
|   message m;
 | |
|   int r;
 | |
| 
 | |
|   m.T_BOOTTIME = boottime;
 | |
|   r = _taskcall(SYSTASK, SYS_STIME, &m);
 | |
|   return(r);
 | |
| }
 | 
