diff options
author | Guido van Rossum <guido@python.org> | 1997-05-07 23:51:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-07 23:51:07 (GMT) |
commit | ee2373b930fb6d994e2f0ea2cfbb5753da4fba4e (patch) | |
tree | 8b42b22b53805dae2031613294ae26470b64c149 /Python/getmtime.c | |
parent | 6778f257b7d06d2fc88563a9141b2f1b92d4ebb7 (diff) | |
download | cpython-ee2373b930fb6d994e2f0ea2cfbb5753da4fba4e.zip cpython-ee2373b930fb6d994e2f0ea2cfbb5753da4fba4e.tar.gz cpython-ee2373b930fb6d994e2f0ea2cfbb5753da4fba4e.tar.bz2 |
Oops, missed some renamings.
Diffstat (limited to 'Python/getmtime.c')
-rw-r--r-- | Python/getmtime.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/getmtime.c b/Python/getmtime.c index a54d3b4..793c663 100644 --- a/Python/getmtime.c +++ b/Python/getmtime.c @@ -37,10 +37,9 @@ PERFORMANCE OF THIS SOFTWARE. #include <sys/types.h> #include <sys/stat.h> -#include "rename2.h" long -getmtime(path) +PyOS_GetLastModificationTime(path) char *path; { struct stat st; |