1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

Fix a couple of -Wundef warnings.

This commit is contained in:
Chris Metcalf
2014-12-29 23:14:38 -05:00
parent cd2c37c979
commit 6d6d7fde04
3 changed files with 6 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ do_test (void)
/* Values from POSIX and Unix. */
#ifdef PAGESIZE
TEST (PAGESIZE, "d", getpagesize ());
#elif PAGE_SIZE
#elif defined (PAGE_SIZE)
TEST (PAGE_SIZE, "d", getpagesize ());
#endif