* lib/mktime.c [DEBUG_MKTIME]: Do not include <config.h>.
Include <string.h>, for strcmp.
2016-05-01 Paul Eggert <eggert@cs.ucla.edu>
+ mktime: resurrect DEBUG_MKTIME testing
+ * lib/mktime.c [DEBUG_MKTIME]: Do not include <config.h>.
+ Include <string.h>, for strcmp.
+
mktime: simplify DEBUG_MKTIME
* lib/mktime.c (DEBUG_MKTIME): Define to 0 if not defined.
Simplify later usage accordingly.
# define DEBUG_MKTIME 0
#endif
-#ifndef _LIBC
+#if !defined _LIBC && !DEBUG_MKTIME
# include <config.h>
#endif
#if DEBUG_MKTIME
# include <stdio.h>
# include <stdlib.h>
+# include <string.h>
/* Make it work even if the system's libc has its own mktime routine. */
# undef mktime
# define mktime my_mktime