repo.or.cz
/
python
/
dscho.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
At the release of 1.0.1.
[python/dscho.git]
/
Mac
/
Python
/
macgetmtime.c
blob
c58100992da94c2a8afee9c03868f772d85ebef1
1
#include
"::unixemu:stat.h"
2
3
/* Interfaced used by import.c */
4
5
long
6
getmtime
(
path
)
7
char
*
path
;
8
{
9
struct
stat st
;
10
if
(
stat
(
path
, &
st
) !=
0
)
11
return
-
1L
;
12
return
st
.
st_mtime
;
13
}