diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-07-10 14:18:13 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-07-10 14:18:13 +0530 |
commit | c3c7c3604fdf934d7a8ec70d79915cd8c8984ad1 (patch) | |
tree | b8a8abb7d415b3fa00ade5bdacfefffc2c9cf601 /locale/programs/simple-hash.c | |
parent | d62aa75af1941fca6f07e107afc447b7b248e340 (diff) | |
download | glibc-c3c7c3604fdf934d7a8ec70d79915cd8c8984ad1.zip glibc-c3c7c3604fdf934d7a8ec70d79915cd8c8984ad1.tar.gz glibc-c3c7c3604fdf934d7a8ec70d79915cd8c8984ad1.tar.bz2 |
Fix -Wundef warning for HAVE_OBSTACK
Remove the HAVE_OBSTACK macro check and include obstack check in
include path order since we don't have a copy of obstack.h in the
current directory.
Diffstat (limited to 'locale/programs/simple-hash.c')
-rw-r--r-- | locale/programs/simple-hash.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/locale/programs/simple-hash.c b/locale/programs/simple-hash.c index ef371a0..666e303 100644 --- a/locale/programs/simple-hash.c +++ b/locale/programs/simple-hash.c @@ -27,11 +27,7 @@ #include <stdint.h> #include <sys/types.h> -#if HAVE_OBSTACK -# include <obstack.h> -#else -# include "obstack.h" -#endif +#include <obstack.h> #ifdef HAVE_VALUES_H # include <values.h> |