From 1bb126fa136ef25c9d103f658907d42bb9f2b452 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 6 Dec 1996 20:17:44 +0000 Subject: [PATCH] Add extern decl of ftime() to make gcc -Wall happy. --- Modules/timemodule.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 2d42dc0df35..ed367471ab7 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -61,6 +61,7 @@ PERFORMANCE OF THIS SOFTWARE. #ifdef HAVE_FTIME #include +extern int ftime(); #endif #ifdef __WATCOMC__