00db10
Fix -Wundef warnings.  Part of this upstream commit:
00db10
00db10
commit dd0ba018122e88937a5f14b6594b9a40693b2e58
00db10
Author: Paul Eggert <eggert@cs.ucla.edu>
00db10
Date:   Sat Jun 28 06:15:54 2014 +0530
00db10
00db10
    Sync up mktime with gnulib
00db10
00db10
diff --git a/time/mktime.c b/time/mktime.c
00db10
index e1fbf9ea197d3c8b..bc914d80593b91f2 100644
00db10
--- a/time/mktime.c
00db10
+++ b/time/mktime.c
00db10
@@ -38,7 +38,7 @@
00db10
 
00db10
 #include <string.h>		/* For the real memcpy prototype.  */
00db10
 
00db10
-#if DEBUG
00db10
+#if defined DEBUG && DEBUG
00db10
 # include <stdio.h>
00db10
 # include <stdlib.h>
00db10
 /* Make it work even if the system's libc has its own mktime routine.  */
00db10
@@ -600,7 +600,7 @@ libc_hidden_def (mktime)
00db10
 libc_hidden_weak (timelocal)
00db10
 #endif
00db10
 
00db10
-#if DEBUG
00db10
+#if defined DEBUG && DEBUG
00db10
 
00db10
 static int
00db10
 not_equal_tm (const struct tm *a, const struct tm *b)