summaryrefslogtreecommitdiffstats
path: root/Modules/timemodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-12-06 20:17:44 (GMT)
committerGuido van Rossum <guido@python.org>1996-12-06 20:17:44 (GMT)
commit1bb126fa136ef25c9d103f658907d42bb9f2b452 (patch)
tree2ce100df03c8a9490079b98c735a9de23240aeff /Modules/timemodule.c
parent9478dd40c2fd2ca41b7ad50a03546890591777bd (diff)
downloadcpython-1bb126fa136ef25c9d103f658907d42bb9f2b452.zip
cpython-1bb126fa136ef25c9d103f658907d42bb9f2b452.tar.gz
cpython-1bb126fa136ef25c9d103f658907d42bb9f2b452.tar.bz2
Add extern decl of ftime() to make gcc -Wall happy.
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r--Modules/timemodule.c1
1 files changed, 1 insertions, 0 deletions
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 @@ PERFORMANCE OF THIS SOFTWARE.
#ifdef HAVE_FTIME
#include <sys/timeb.h>
+extern int ftime();
#endif
#ifdef __WATCOMC__