diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-07-05 10:12:29 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-07-05 10:12:29 +0000 |
commit | 1853ec1bdb135555d58f6248f490bc10c23c08f0 (patch) | |
tree | a516d4f4c24ffd623d341ec1eacb10e39a2bba77 /sys/arch/mvme68k | |
parent | 62e8975901017f65d1114e50579720901c7690e4 (diff) |
Get rid of REAL_CLISTS. It was never implemented and the tentacles are
everywhhere.
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/mvme68k/machdep.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/mvme68k/mvme68k/machdep.c b/sys/arch/mvme68k/mvme68k/machdep.c index 8b3a881466c..6ec8c805852 100644 --- a/sys/arch/mvme68k/mvme68k/machdep.c +++ b/sys/arch/mvme68k/mvme68k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.42 2001/06/27 06:19:48 art Exp $ */ +/* $OpenBSD: machdep.c,v 1.43 2001/07/05 10:12:13 art Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -295,9 +295,6 @@ again: (name) = (type *)v; v = (caddr_t)((name)+(num)) #define valloclim(name, type, num, lim) \ (name) = (type *)v; v = (caddr_t)((lim) = ((name)+(num))) -#ifdef REAL_CLISTS - valloc(cfree, struct cblock, nclist); -#endif valloc(timeouts, struct timeout, ntimeout); #ifdef SYSVSHM valloc(shmsegs, struct shmid_ds, shminfo.shmmni); |