diff options
author | rahnds <> | 1998-06-28 06:30:34 +0000 |
---|---|---|
committer | rahnds <> | 1998-06-28 06:30:34 +0000 |
commit | f17e8317cc47a8704164e9ea4730db5b3c45650b (patch) | |
tree | 071e27f8b9f3019d39efefddd6a6b2c2eb7e7cc6 | |
parent | e2f5dc5a656c6b1b2ffb1b9180c20ec8a459d7b2 (diff) | |
download | openbsd-f17e8317cc47a8704164e9ea4730db5b3c45650b.tar.gz openbsd-f17e8317cc47a8704164e9ea4730db5b3c45650b.tar.bz2 openbsd-f17e8317cc47a8704164e9ea4730db5b3c45650b.zip |
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-- | src/lib/libc/stdlib/malloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/malloc.c b/src/lib/libc/stdlib/malloc.c index 9aadc494f9..b46d979384 100644 --- a/src/lib/libc/stdlib/malloc.c +++ b/src/lib/libc/stdlib/malloc.c | |||
@@ -8,7 +8,7 @@ | |||
8 | */ | 8 | */ |
9 | 9 | ||
10 | #if defined(LIBC_SCCS) && !defined(lint) | 10 | #if defined(LIBC_SCCS) && !defined(lint) |
11 | static char rcsid[] = "$OpenBSD: malloc.c,v 1.30 1998/01/02 05:32:49 deraadt Exp $"; | 11 | static char rcsid[] = "$OpenBSD: malloc.c,v 1.31 1998/06/28 06:30:34 rahnds Exp $"; |
12 | #endif /* LIBC_SCCS and not lint */ | 12 | #endif /* LIBC_SCCS and not lint */ |
13 | 13 | ||
14 | /* | 14 | /* |
@@ -84,7 +84,7 @@ static char rcsid[] = "$OpenBSD: malloc.c,v 1.30 1998/01/02 05:32:49 deraadt Exp | |||
84 | #ifdef __OpenBSD__ | 84 | #ifdef __OpenBSD__ |
85 | # if defined(__alpha__) || defined(__m68k__) || defined(__mips__) || \ | 85 | # if defined(__alpha__) || defined(__m68k__) || defined(__mips__) || \ |
86 | defined(__i386__) || defined(__m88k__) || defined(__ns32k__) || \ | 86 | defined(__i386__) || defined(__m88k__) || defined(__ns32k__) || \ |
87 | defined(__vax__) | 87 | defined(__vax__) || defined(__powerpc__) |
88 | # define malloc_pageshift (PGSHIFT) | 88 | # define malloc_pageshift (PGSHIFT) |
89 | # define malloc_minsize 16U | 89 | # define malloc_minsize 16U |
90 | # endif /* __i386__ */ | 90 | # endif /* __i386__ */ |