From f70ef4f8606f99744252a804229d53a4d97601c1 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Sat, 22 Jul 2000 18:47:25 +0000 Subject: Mass ANSIfication of function definitions. Doesn't cover all 'extern' declarations yet, those come later. --- Python/getmtime.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Python/getmtime.c') 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) -- cgit v1.2.1