diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-05-05 02:40:35 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-05-05 02:40:35 +0000 |
commit | c1e1ed8e0a7936e906af55cc7914c72a98ce41b5 (patch) | |
tree | 6b21ca0ad4bf5755680264672c8313bc18a590d1 | |
parent | 9942167eaa91faa7ec0ca82f30c3741f16a1d5d3 (diff) |
plug unused parts
-rw-r--r-- | sys/arch/hppa/hppa/conf.c | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/sys/arch/hppa/hppa/conf.c b/sys/arch/hppa/hppa/conf.c index fa1dbec38d1..4192a352721 100644 --- a/sys/arch/hppa/hppa/conf.c +++ b/sys/arch/hppa/hppa/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.3 1999/04/20 20:38:11 mickey Exp $ */ +/* $OpenBSD: conf.c,v 1.4 1999/05/05 02:40:34 mickey Exp $ */ /*- * Copyright (c) 1991 The Regents of the University of California. @@ -54,10 +54,15 @@ bdev_decl(sw); #include "ch.h" #include "ss.h" #include "uk.h" +#if 0 #include "fd.h" +#include "ft.h" +#else +#define NFD 0 +#define NFT 0 +#endif bdev_decl(fd); cdev_decl(fd); -#include "ft.h" bdev_decl(ft); cdev_decl(ft); @@ -98,9 +103,15 @@ int nblkdev = sizeof(bdevsw) / sizeof(bdevsw[0]); cdev_decl(mm); cdev_decl(sw); #include "pty.h" +#if 0 #include "wsdisplay.h" #include "wskbd.h" #include "wsmouse.h" +#else +#define NWSKBD 0 +#define NWSDISPLAY 0 +#define NWSMOUSE 0 +#endif #include "bpfilter.h" #include "tun.h" |