1 /* Emulate getpagesize on systems that lack it.
2 Copyright (C) 1999, 2000, 2004 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 #ifndef HAVE_GETPAGESIZE
25 #if !defined getpagesize && defined _SC_PAGESIZE
26 # if !(defined VMS && __VMS_VER < 70000000)
27 # define getpagesize() sysconf (_SC_PAGESIZE)
31 #if !defined getpagesize && defined VMS
33 # define getpagesize() 8192
35 # define getpagesize() 512
39 /* This is for BeOS. */
40 #if !defined getpagesize && HAVE_OS_H
42 # if defined B_PAGE_SIZE
43 # define getpagesize() B_PAGE_SIZE
47 #if !defined getpagesize && HAVE_SYS_PARAM_H
48 # include <sys/param.h>
50 # define getpagesize() EXEC_PAGESIZE
56 # define getpagesize() (NBPG * CLSIZE)
59 # define getpagesize() NBPC
65 #endif /* not HAVE_GETPAGESIZE */