Completed (hopefully) the unification of THINK 6.0 and MPW 3.2
versions -- they now share config.c and config.h, and statting is
always done through macstat.[ch] (THINK's <stat.h> defines funny
constants). Also the configuration of stdwin is done differently: you
have to define USE_STDWIN to the compiler prefix.
diff --git a/Mac/Python/macgetmtime.c b/Mac/Python/macgetmtime.c
index 9ba8136..d4d15be 100644
--- a/Mac/Python/macgetmtime.c
+++ b/Mac/Python/macgetmtime.c
@@ -1,4 +1,4 @@
-#include <stat.h>
+#include "macstat.h"
/* Interfaced used by import.c */
@@ -6,8 +6,8 @@
getmtime(path)
char *path;
{
- struct stat st;
- if (stat(path, &st) != 0)
+ struct macstat st;
+ if (macstat(path, &st) != 0)
return -1L;
return st.st_mtime;
}