]> granicus.if.org Git - python/commitdiff
M.-A. Lemburg <mal@lemburg.com>:
authorFred Drake <fdrake@acm.org>
Tue, 9 May 2000 19:52:40 +0000 (19:52 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 9 May 2000 19:52:40 +0000 (19:52 +0000)
Fixed a bug due to a /* inside /*...*/. GCC doesn't like
this and bombs.

Modules/timemodule.c

index 7d5317972a0baccb433398833726649778f88732..faadf1e0fc3daa1eb78e8da7995086b30421c9d3 100644 (file)
@@ -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 <time.h> */
+
+#if 0
+extern char *strptime(); /* Enable this if it's not declared in <time.h> */
+#endif
 
 static PyObject *
 time_strptime(self, args)