Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
b6775db241f5fe5e3dc2ca09fc6c9e6164d4b2af
/
.
/
Mac
/
Python
/
macgetmtime.c
blob: c58100992da94c2a8afee9c03868f772d85ebef1 [
file
]
#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
;
}