25845f
commit 6d6d7fde04c8ef830205a9900bf101597a2f4b18
25845f
Author: Chris Metcalf <cmetcalf@ezchip.com>
25845f
Date:   Mon Dec 29 23:14:38 2014 -0500
25845f
25845f
    Fix a couple of -Wundef warnings.
25845f
25845f
Conflicts:
25845f
	sysdeps/unix/sysv/linux/tst-setgetname.c
25845f
25845f
File removed manually; this test does not exist in our tree.
25845f
25845f
diff --git a/stdlib/tst-limits.c b/stdlib/tst-limits.c
25845f
index 6e51dcadb5baaabb..9aabc360f6b8c3f7 100644
25845f
--- a/stdlib/tst-limits.c
25845f
+++ b/stdlib/tst-limits.c
25845f
@@ -58,7 +58,7 @@ do_test (void)
25845f
   /* Values from POSIX and Unix.  */
25845f
 #ifdef PAGESIZE
25845f
   TEST (PAGESIZE, "d", getpagesize ());
25845f
-#elif PAGE_SIZE
25845f
+#elif defined (PAGE_SIZE)
25845f
   TEST (PAGE_SIZE, "d", getpagesize ());
25845f
 #endif
25845f