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...)
This commit is contained in:
Guido van Rossum 1999-01-03 13:00:34 +00:00
parent e0d7dae3b8
commit 0a6363d7e1

View file

@ -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 <time.h> */
static PyObject *
time_strptime(self, args)