diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-01-18 03:03:16 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-01-18 03:03:16 +0000 |
commit | 60f42b50d894d3c9798c50e063ae758a1a5987a2 (patch) | |
tree | 5a19a8a81cf7ebcd38e46460d0c32c24ff96b6b2 /Python/getmtime.c | |
parent | d2bf3b7ca6f702f54b8e81ea8d194fc116ac6791 (diff) | |
download | cpython-git-60f42b50d894d3c9798c50e063ae758a1a5987a2.tar.gz |
Move distributed and duplicated config for stat() and fstat() into pyport.h.
Diffstat (limited to 'Python/getmtime.c')
-rw-r--r-- | Python/getmtime.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Python/getmtime.c b/Python/getmtime.c index 4c7ecd68a2..c77782df67 100644 --- a/Python/getmtime.c +++ b/Python/getmtime.c @@ -6,16 +6,6 @@ #include "Python.h" #include "config.h" -#include <stdio.h> -#ifndef DONT_HAVE_SYS_TYPES_H -#include <sys/types.h> -#endif -#ifndef DONT_HAVE_SYS_STAT_H -#include <sys/stat.h> -#elif defined(HAVE_STAT_H) -#include <stat.h> -#endif - time_t PyOS_GetLastModificationTime(char *path, FILE *fp) { |