diff options
author | Fred Drake <fdrake@acm.org> | 2000-05-09 19:52:40 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-05-09 19:52:40 (GMT) |
commit | aff601804d0b100815d1bdfdb2cf5778385a912c (patch) | |
tree | 3ce7d92f9ad2873824d35b91d05f6addd0a3b80e /Modules | |
parent | cb093fe8909146f02ac02b218a7b46800f87a76f (diff) | |
download | cpython-aff601804d0b100815d1bdfdb2cf5778385a912c.zip cpython-aff601804d0b100815d1bdfdb2cf5778385a912c.tar.gz cpython-aff601804d0b100815d1bdfdb2cf5778385a912c.tar.bz2 |
M.-A. Lemburg <mal@lemburg.com>:
Fixed a bug due to a /* inside /*...*/. GCC doesn't like
this and bombs.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/timemodule.c | 5 |
1 files changed, 4 insertions, 1 deletions
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 @@ 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) |