16 lines
		
	
	
		
			205 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			205 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
/*
 | 
						|
 * tzset - set timezone information
 | 
						|
 */
 | 
						|
/* $Header$ */
 | 
						|
 | 
						|
/* This function is present for System V && POSIX */
 | 
						|
 | 
						|
#include	<time.h>
 | 
						|
#include	"loc_time.h"
 | 
						|
 | 
						|
void
 | 
						|
tzset(void)
 | 
						|
{
 | 
						|
	_tzset();	/* does the job */
 | 
						|
}
 |