summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1997-01-10 15:24:19 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1997-01-10 15:24:19 (GMT)
commit8dc8a6e4be11c91d6130a67b4b120fdc4a52413f (patch)
treef0ead50330045c718b6783d276140c7e2a8ff346 /Mac
parent41dc09d10ec7cadfb5a0185461e8cce91182bb20 (diff)
downloadcpython-8dc8a6e4be11c91d6130a67b4b120fdc4a52413f.zip
cpython-8dc8a6e4be11c91d6130a67b4b120fdc4a52413f.tar.gz
cpython-8dc8a6e4be11c91d6130a67b4b120fdc4a52413f.tar.bz2
Mac-specific version of getmtime (for non-GUSI Python, which needs
different include files)
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Python/getmtime.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/Mac/Python/getmtime.c b/Mac/Python/getmtime.c
new file mode 100644
index 0000000..171f9bc
--- /dev/null
+++ b/Mac/Python/getmtime.c
@@ -0,0 +1,50 @@
+/***********************************************************
+Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
+The Netherlands.
+
+ All Rights Reserved
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted,
+provided that the above copyright notice appear in all copies and that
+both that copyright notice and this permission notice appear in
+supporting documentation, and that the names of Stichting Mathematisch
+Centrum or CWI or Corporation for National Research Initiatives or
+CNRI not be used in advertising or publicity pertaining to
+distribution of the software without specific, written prior
+permission.
+
+While CWI is the initial source for this software, a modified version
+is made available by the Corporation for National Research Initiatives
+(CNRI) at the Internet address ftp://ftp.python.org.
+
+STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
+CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
+DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
+PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.
+
+******************************************************************/
+
+/* Subroutine to get the last modification time of a file */
+
+/* (A separate file because this may be OS dependent) */
+
+#include "config.h"
+
+#include <stat.h>
+#include "rename2.h"
+
+long
+getmtime(path)
+ char *path;
+{
+ struct stat st;
+ if (stat(path, &st) != 0)
+ return -1;
+ else
+ return st.st_mtime;
+}