mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			180 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			180 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "::unixemu:stat.h"
 | |
| 
 | |
| /* Interfaced used by import.c */
 | |
| 
 | |
| long
 | |
| getmtime(path)
 | |
| 	char *path;
 | |
| {
 | |
| 	struct stat st;
 | |
| 	if (stat(path, &st) != 0)
 | |
| 		return -1L;
 | |
| 	return st.st_mtime;
 | |
| }
 | 
