From: Jim Kingdon Date: Fri, 26 Apr 1991 22:56:08 +0000 (+0000) Subject: gmalloc.c: #if 0 out !HAVE_GETPAGESIZE code. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2d3b42955971bb509dd6ee7287704e4e2db57080;p=binutils-gdb.git gmalloc.c: #if 0 out !HAVE_GETPAGESIZE code. * gmalloc.c [!HAVE_GETPAGESIZE]: Try to figure out the pagesize. --- diff --git a/gdb/gmalloc.c b/gdb/gmalloc.c index a201e9a8028..e7890c25203 100755 --- a/gdb/gmalloc.c +++ b/gdb/gmalloc.c @@ -1093,6 +1093,10 @@ DEFUN(__default_morecore, (size), ptrdiff_t size) #include #endif /* __ONEFILE */ +#if 0 +/* On SunOS 4.1.1, typedefs size_t, which is bad since + we typedef it above. Maybe it's better just to have people compile + -Dgetpagesize()=4096. */ /* Deal with page size. */ #ifdef BSD #ifndef BSD4_1 @@ -1125,6 +1129,7 @@ DEFUN_VOID(__getpagesize) return PAGESIZE; } #endif /* not HAVE_GETPAGESIZE */ +#endif /* 0 */ extern size_t EXFUN(__getpagesize, (NOARGS));