Blame SOURCES/glibc-rh1505492-undef-40.patch

c6d234
commit 12f2254b815056bb897a25a0c6dee0122aef52ac
c6d234
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
c6d234
Date:   Thu Jul 10 14:19:21 2014 +0530
c6d234
c6d234
    Fix -Wundef warning for HAVE_SYS_PARAM_H
c6d234
    
c6d234
    Include sys/param.h unconditionally
c6d234
c6d234
diff --git a/io/ftw.c b/io/ftw.c
c6d234
index 7aff7d04c9ed1e95..ffdb4b02dc7ca4d5 100644
c6d234
--- a/io/ftw.c
c6d234
+++ b/io/ftw.c
c6d234
@@ -66,9 +66,7 @@ char *alloca ();
c6d234
 #include <string.h>
c6d234
 #include <unistd.h>
c6d234
 #include <not-cancel.h>
c6d234
-#if HAVE_SYS_PARAM_H || defined _LIBC
c6d234
-# include <sys/param.h>
c6d234
-#endif
c6d234
+#include <sys/param.h>
c6d234
 #ifdef _LIBC
c6d234
 # include <include/sys/stat.h>
c6d234
 #else