aboutsummaryrefslogtreecommitdiff
path: root/toys/other/devmem.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/other/devmem.c')
-rw-r--r--toys/other/devmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/devmem.c b/toys/other/devmem.c
index 6e270df0..ced6c518 100644
--- a/toys/other/devmem.c
+++ b/toys/other/devmem.c
@@ -20,7 +20,7 @@ config DEVMEM
void devmem_main(void)
{
- int writing = toys.optc == 3, page_size = getpagesize(), bytes = 4, fd;
+ int writing = toys.optc == 3, page_size = sysconf(_SC_PAGESIZE), bytes = 4,fd;
unsigned long long addr = atolx(toys.optargs[0]), data = 0, map_off, map_len;
void *map, *p;