mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 19:34:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			200 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			200 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "macstat.h"
 | 
						|
#include "rename2.h"
 | 
						|
 | 
						|
/* Interfaced used by import.c */
 | 
						|
 | 
						|
long
 | 
						|
getmtime(path)
 | 
						|
	char *path;
 | 
						|
{
 | 
						|
	struct macstat st;
 | 
						|
	if (macstat(path, &st) != 0)
 | 
						|
		return -1L;
 | 
						|
	return st.st_mtime;
 | 
						|
}
 |