c6d234
Fix -Wundef warnings.  Fixed upstream as part of this commit:
c6d234
c6d234
commit 1570a72bb8359c9a3a64c4e22d9ea47ce6fcff31
c6d234
Author: Will Newton <will.newton@linaro.org>
c6d234
Date:   Thu Jun 26 16:00:44 2014 +0100
c6d234
c6d234
    string/memchr.c: Merge from gnulib
c6d234
c6d234
diff --git a/string/memchr.c b/string/memchr.c
c6d234
index 1684bfa56885e883..d1880cfbaed951a6 100644
c6d234
--- a/string/memchr.c
c6d234
+++ b/string/memchr.c
c6d234
@@ -32,11 +32,11 @@
c6d234
 # include <memcopy.h>
c6d234
 #endif
c6d234
 
c6d234
-#if HAVE_STDLIB_H || defined _LIBC
c6d234
+#if defined _LIBC || HAVE_STDLIB_H
c6d234
 # include <stdlib.h>
c6d234
 #endif
c6d234
 
c6d234
-#if HAVE_LIMITS_H || defined _LIBC
c6d234
+#if defined _LIBC || HAVE_LIMITS_H
c6d234
 # include <limits.h>
c6d234
 #endif
c6d234