From: Guido van Rossum Date: Fri, 6 Dec 1996 20:17:44 +0000 (+0000) Subject: Add extern decl of ftime() to make gcc -Wall happy. X-Git-Tag: v1.5a1~869 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1bb126fa136ef25c9d103f658907d42bb9f2b452;p=thirdparty%2FPython%2Fcpython.git Add extern decl of ftime() to make gcc -Wall happy. --- diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 2d42dc0df35f..ed367471ab7d 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__