aboutsummaryrefslogtreecommitdiffstats
path: root/gmalloc.c
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:24 -0800
committerBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:24 -0800
commit1edcb9b62a1a520eddae8403c19d841c9b18737f (patch)
treebc0a43d9b3905726a76ed6f0528b54275f23d082 /gmalloc.c
parent5ca6e8e6a4e5c022a6fb5d28f30219c22c99eda8 (diff)
downloadscm-1edcb9b62a1a520eddae8403c19d841c9b18737f.tar.gz
scm-1edcb9b62a1a520eddae8403c19d841c9b18737f.zip
Import Upstream version 5b3upstream/5b3
Diffstat (limited to 'gmalloc.c')
-rw-r--r--gmalloc.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/gmalloc.c b/gmalloc.c
index 59874ee..d9eaf1b 100644
--- a/gmalloc.c
+++ b/gmalloc.c
@@ -1614,7 +1614,17 @@ Cambridge, MA 02139, USA.
#include <sys/cdefs.h>
extern size_t __getpagesize __P ((void));
#else
+/* added by Denys Duchier: handle missing getpagesize.h
+ on solaris: getpagesize is in the c library, but there
+ is no include file that declares it.
+ */
+#if defined(sun) && defined(__svr4__) && !defined(__GNUG__)
+extern int getpagesize(void);
+#else
+#ifndef hpux
#include "getpagesize.h"
+#endif
+#endif
#define __getpagesize() getpagesize()
#endif