From c9c2cd3e6955cb1d57b8be01d4b072bf44058762 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 10 Mar 2018 17:47:14 -0500 Subject: reverse definition dependency between PAGESIZE and PAGE_SIZE PAGESIZE is actually the version defined in POSIX base, with PAGE_SIZE being in the XSI option. use PAGESIZE as the underlying definition to facilitate making exposure of PAGE_SIZE conditional. --- arch/i386/bits/limits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/i386/bits') diff --git a/arch/i386/bits/limits.h b/arch/i386/bits/limits.h index 65a3dd64..c340ceb2 100644 --- a/arch/i386/bits/limits.h +++ b/arch/i386/bits/limits.h @@ -1,6 +1,6 @@ #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) -#define PAGE_SIZE 4096 +#define PAGESIZE 4096 #define LONG_BIT 32 #endif -- cgit v1.2.1