From 0a6363d7e1d3061211faa2323752819e371e0ad2 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 3 Jan 1999 13:00:34 +0000 Subject: Get rid of the strptype() declaration -- on some BSD systems, it's a conflict, and it should be declared in time.h anyway. (Too bad if gcc -Wall won't be happy if it isn't declared...) --- Modules/timemodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/timemodule.c b/Modules/timemodule.c index e862ae5..3cf30d6 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -402,7 +402,7 @@ See the library reference manual for formatting codes."; #endif /* HAVE_STRFTIME */ #ifdef HAVE_STRPTIME -extern char *strptime(); /* In case it's not declared somehow */ +/* extern char *strptime(); /* Enable this if it's not declared in */ static PyObject * time_strptime(self, args) -- cgit v0.12