From aff601804d0b100815d1bdfdb2cf5778385a912c Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 9 May 2000 19:52:40 +0000 Subject: [PATCH] M.-A. Lemburg : Fixed a bug due to a /* inside /*...*/. GCC doesn't like this and bombs. --- Modules/timemodule.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 7d5317972a..faadf1e0fc 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -421,7 +421,10 @@ See the library reference manual for formatting codes."; #endif /* HAVE_STRFTIME */ #ifdef HAVE_STRPTIME -/* extern char *strptime(); /* Enable this if it's not declared in */ + +#if 0 +extern char *strptime(); /* Enable this if it's not declared in */ +#endif static PyObject * time_strptime(self, args) -- 2.40.0