diff options
Diffstat (limited to 'gnulib-m4/strncat.m4')
-rw-r--r-- | gnulib-m4/strncat.m4 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnulib-m4/strncat.m4 b/gnulib-m4/strncat.m4 index 17550d4a..9bff2cd2 100644 --- a/gnulib-m4/strncat.m4 +++ b/gnulib-m4/strncat.m4 @@ -1,4 +1,5 @@ -# strncat.m4 serial 8 +# strncat.m4 +# serial 9 dnl Copyright (C) 2002-2004, 2009-2024 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -44,7 +45,7 @@ AC_DEFUN_ONCE([gl_FUNC_STRNCAT], if (fd >= 0) # endif { - int pagesize = getpagesize (); + long int pagesize = sysconf (_SC_PAGESIZE); char *two_pages = (char *) mmap (NULL, 2 * pagesize, PROT_READ | PROT_WRITE, flags, fd, 0); |