]> granicus.if.org Git - python/commitdiff
Add extern decl of ftime() to make gcc -Wall happy.
authorGuido van Rossum <guido@python.org>
Fri, 6 Dec 1996 20:17:44 +0000 (20:17 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 6 Dec 1996 20:17:44 +0000 (20:17 +0000)
Modules/timemodule.c

index 2d42dc0df35fc72046e3e25af62ea0db5674e203..ed367471ab7dcafede829030b04cfeeb52a17f3a 100644 (file)
@@ -61,6 +61,7 @@ PERFORMANCE OF THIS SOFTWARE.
 
 #ifdef HAVE_FTIME
 #include <sys/timeb.h>
+extern int ftime();
 #endif
 
 #ifdef __WATCOMC__