mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:42:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			229 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			229 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <sys/cdefs.h>
 | |
| 
 | |
| __BEGIN_DECLS
 | |
| 
 | |
| struct timezone {
 | |
|     int tz_minuteswest;
 | |
|     int tz_dsttime;
 | |
| };
 | |
| 
 | |
| int gettimeofday(struct timeval* __restrict__, void* __restrict__)  __attribute__((nonnull(1)));
 | |
| 
 | |
| __END_DECLS
 | 
