mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Move distributed and duplicated config for stat() and fstat() into pyport.h.
This commit is contained in:
parent
d2bf3b7ca6
commit
60f42b50d8
4 changed files with 34 additions and 51 deletions
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -19,22 +19,6 @@
|
|||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
/* We expect that stat exists on most systems.
|
||||
It's confirmed on Unix, Mac and Windows.
|
||||
If you don't have it, add #define DONT_HAVE_STAT to your config.h. */
|
||||
#ifndef DONT_HAVE_STAT
|
||||
#define HAVE_STAT
|
||||
|
||||
#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
|
||||
|
||||
#ifdef HAVE_FCNTL_H
|
||||
#include <fcntl.h>
|
||||
#endif
|
||||
|
@ -48,9 +32,6 @@
|
|||
#define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
extern time_t PyOS_GetLastModificationTime(char *, FILE *);
|
||||
/* In getmtime.c */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue