mirror of
https://github.com/python/cpython.git
synced 2024-11-24 00:38:00 +01:00
14 lines
170 B
C
14 lines
170 B
C
#include <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;
|
|
}
|