summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDale S. Rahn <rahnds@cvs.openbsd.org>1998-06-28 06:30:35 +0000
committerDale S. Rahn <rahnds@cvs.openbsd.org>1998-06-28 06:30:35 +0000
commita6c743256693bfbc47fa90e3d5760a61865403ae (patch)
tree958e54bd95c2e8b0c31a3ab9485363cfdeef3174
parent37276203429b8712d224da288edfa446c32e6589 (diff)
Oh fun, mucking about with files used on all archs.
This is one of many places in the source that have #if defined("list all architectures") Is there some possible way to eliminate, reduce these or at least have a file that describes all occurrances so that when a new port is done this could be addressed. like the recent hppa port, does it need to take a look at this????
-rw-r--r--lib/libc/stdlib/malloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c
index 9aadc494f90..b46d9793845 100644
--- a/lib/libc/stdlib/malloc.c
+++ b/lib/libc/stdlib/malloc.c
@@ -8,7 +8,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: malloc.c,v 1.30 1998/01/02 05:32:49 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: malloc.c,v 1.31 1998/06/28 06:30:34 rahnds Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@@ -84,7 +84,7 @@ static char rcsid[] = "$OpenBSD: malloc.c,v 1.30 1998/01/02 05:32:49 deraadt Exp
#ifdef __OpenBSD__
# if defined(__alpha__) || defined(__m68k__) || defined(__mips__) || \
defined(__i386__) || defined(__m88k__) || defined(__ns32k__) || \
- defined(__vax__)
+ defined(__vax__) || defined(__powerpc__)
# define malloc_pageshift (PGSHIFT)
# define malloc_minsize 16U
# endif /* __i386__ */