diff options
author | Guido van Rossum <guido@python.org> | 1996-12-06 20:17:44 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-06 20:17:44 (GMT) |
commit | 1bb126fa136ef25c9d103f658907d42bb9f2b452 (patch) | |
tree | 2ce100df03c8a9490079b98c735a9de23240aeff /Modules/timemodule.c | |
parent | 9478dd40c2fd2ca41b7ad50a03546890591777bd (diff) | |
download | cpython-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.c | 1 |
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__ |