summaryrefslogtreecommitdiffstats
path: root/Mac/Python
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-05-03 08:41:56 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-05-03 08:41:56 (GMT)
commit6a066805e0da177d62a6396c95371a66ace7c216 (patch)
tree371a60d187d5db860d61936604eb27801c170ea8 /Mac/Python
parent19dde103a80525ea02565a4d218708ee028dd2dd (diff)
downloadcpython-6a066805e0da177d62a6396c95371a66ace7c216.zip
cpython-6a066805e0da177d62a6396c95371a66ace7c216.tar.gz
cpython-6a066805e0da177d62a6396c95371a66ace7c216.tar.bz2
Removed, the core-python getmtime works fine with GUSI2.
Diffstat (limited to 'Mac/Python')
-rw-r--r--Mac/Python/getmtime.c57
1 files changed, 0 insertions, 57 deletions
diff --git a/Mac/Python/getmtime.c b/Mac/Python/getmtime.c
deleted file mode 100644
index a14ef71..0000000
--- a/Mac/Python/getmtime.c
+++ /dev/null
@@ -1,57 +0,0 @@
-/***********************************************************
-Copyright 1991-1997 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"
-
-#ifdef USE_GUSI
-#include <sys/types.h>
-#endif /* USE_GUSI */
-#ifdef USE_GUSI2
-#include <sys/stat.h>
-#else
-#include <stat.h>
-#endif
-#include "rename2.h"
-
-long
-getmtime(path)
- char *path;
-{
- struct stat st;
- if (stat(path, &st) != 0)
- return -1;
- else
- return st.st_mtime;
-}