00db10
commit c3c7c3604fdf934d7a8ec70d79915cd8c8984ad1
00db10
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
00db10
Date:   Thu Jul 10 14:18:13 2014 +0530
00db10
00db10
    Fix -Wundef warning for HAVE_OBSTACK
00db10
    
00db10
    Remove the HAVE_OBSTACK macro check and include obstack check in
00db10
    include path order since we don't have a copy of obstack.h in the
00db10
    current directory.
00db10
00db10
diff --git a/locale/programs/simple-hash.c b/locale/programs/simple-hash.c
00db10
index bb3076612da90ca1..30d3247d5ce98374 100644
00db10
--- a/locale/programs/simple-hash.c
00db10
+++ b/locale/programs/simple-hash.c
00db10
@@ -26,11 +26,7 @@
00db10
 #include <string.h>
00db10
 #include <sys/types.h>
00db10
 
00db10
-#if HAVE_OBSTACK
00db10
-# include <obstack.h>
00db10
-#else
00db10
-# include "obstack.h"
00db10
-#endif
00db10
+#include <obstack.h>
00db10
 
00db10
 #ifdef HAVE_VALUES_H
00db10
 # include <values.h>