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
Added ref to Misc/NEWS file; added hint to run regen script on Linux.
[python/dscho.git]
/
Mac
/
Python
/
macgetmtime.c
blob
aeb1e70dbd9672e8e364e2d84c089a2189c67fa5
1
#include
"macstat.h"
2
#include
"rename2.h"
3
4
/* Interfaced used by import.c */
5
6
long
7
getmtime
(
path
)
8
char
*
path
;
9
{
10
struct
macstat st
;
11
if
(
macstat
(
path
, &
st
) !=
0
)
12
return
-
1L
;
13
return
st
.
st_mtime
;
14
}