Initial revision

This commit is contained in:
Guido van Rossum 1994-01-05 16:17:15 +00:00
parent 718581a522
commit ce9739ba76
5 changed files with 720 additions and 0 deletions

13
Mac/Python/macgetmtime.c Normal file
View file

@ -0,0 +1,13 @@
#include "::unixemu:stat.h"
/* Interfaced used by import.c */
long
getmtime(path)
char *path;
{
struct stat st;
if (stat(path, &st) != 0)
return -1L;
return st.st_mtime;
}