summaryrefslogtreecommitdiff
path: root/Python/getmtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/getmtime.c')
-rw-r--r--Python/getmtime.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/Python/getmtime.c b/Python/getmtime.c
index 80fe7b5225..8bae191505 100644
--- a/Python/getmtime.c
+++ b/Python/getmtime.c
@@ -26,9 +26,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#endif
time_t
-PyOS_GetLastModificationTime(path, fp)
- char *path;
- FILE *fp;
+PyOS_GetLastModificationTime(char *path, FILE *fp)
{
struct stat st;
if (fstat(fileno(fp), &st) != 0)