diff --git a/Python/getmtime.c b/Python/getmtime.c index 55ec5a3b635..80fe7b52255 100644 --- a/Python/getmtime.c +++ b/Python/getmtime.c @@ -16,8 +16,14 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #include "config.h" #include +#ifndef DONT_HAVE_SYS_TYPES_H #include +#endif +#ifndef DONT_HAVE_SYS_STAT_H #include +#elif defined(HAVE_STAT_H) +#include +#endif time_t PyOS_GetLastModificationTime(path, fp)