Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
9a22de101fd66c6e0d1a6dda515a7b31d8c9c9aa
/
.
/
Mac
/
Python
/
macgetmtime.c
blob: d4d15be9d94af36dde17bf2578d32262d0c4037b [
file
] [
log
] [
blame
]
#include
"macstat.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
;
}