Add extern decl of ftime() to make gcc -Wall happy.
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index 2d42dc0..ed36747 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -61,6 +61,7 @@
 
 #ifdef HAVE_FTIME
 #include <sys/timeb.h>
+extern int ftime();
 #endif
 
 #ifdef __WATCOMC__