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