M.-A. Lemburg <mal@lemburg.com>:
Fixed a bug due to a /* inside /*...*/. GCC doesn't like
this and bombs.
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index 7d53179..faadf1e 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -421,7 +421,10 @@
#endif /* HAVE_STRFTIME */
#ifdef HAVE_STRPTIME
-/* extern char *strptime(); /* Enable this if it's not declared in <time.h> */
+
+#if 0
+extern char *strptime(); /* Enable this if it's not declared in <time.h> */
+#endif
static PyObject *
time_strptime(self, args)