15 lines
		
	
	
	
		
			299 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			299 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <sys/types.h>
 | 
						|
 | 
						|
_ftime(p)
 | 
						|
	struct { time_t time; unsigned short millitm;
 | 
						|
		 short timezone; short dstflag; } *p;
 | 
						|
{
 | 
						|
	struct { long l1,l2; } t1,t2;
 | 
						|
 | 
						|
	if (_gettimeofday(&t1,&t2) < 0) return -1;
 | 
						|
	p->time = t1.l1;
 | 
						|
	p->millitm = t1.l2/1000;
 | 
						|
	p->dstflag = t2.l2;
 | 
						|
	p->timezone = t2.l1;
 | 
						|
	return 0;
 | 
						|
}
 |