From: Guido van Rossum Date: Sat, 1 Jul 2000 01:08:11 +0000 (+0000) Subject: Jack Jansen, Mac patch: X-Git-Tag: v2.0b1~1164 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f12d7a02a02845bfec241d33c480ddad6a82df9e;p=python Jack Jansen, Mac patch: If we have stat.h include it if we don't have sys/stat.h --- diff --git a/Python/getmtime.c b/Python/getmtime.c index 55ec5a3b63..80fe7b5225 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)