summaryrefslogtreecommitdiffstats
path: root/Mac/Python/macgetmtime.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-01-05 16:17:15 (GMT)
committerGuido van Rossum <guido@python.org>1994-01-05 16:17:15 (GMT)
commitce9739ba769b465047f644672eda654efed7ad80 (patch)
tree214d6f651ad0a59eae9aa0c41072cf901837ceca /Mac/Python/macgetmtime.c
parent718581a522663c7e5e2c692daaff4e5a399d6e2c (diff)
downloadcpython-ce9739ba769b465047f644672eda654efed7ad80.zip
cpython-ce9739ba769b465047f644672eda654efed7ad80.tar.gz
cpython-ce9739ba769b465047f644672eda654efed7ad80.tar.bz2
Initial revision
Diffstat (limited to 'Mac/Python/macgetmtime.c')
-rw-r--r--Mac/Python/macgetmtime.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/Mac/Python/macgetmtime.c b/Mac/Python/macgetmtime.c
new file mode 100644
index 0000000..c581009
--- /dev/null
+++ b/Mac/Python/macgetmtime.c
@@ -0,0 +1,13 @@
+#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;
+}