diff --git a/sys/kern/subr_xxx.c b/sys/kern/subr_xxx.c index 5ff7dccda7db..06e732061cfa 100644 --- a/sys/kern/subr_xxx.c +++ b/sys/kern/subr_xxx.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)subr_xxx.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $Id: subr_xxx.c,v 1.8 1997/02/22 09:39:18 peter Exp $ */ /* @@ -158,17 +158,6 @@ nodevtotty(dev) return (NULL); } -int -noselect(dev, rw, p) - dev_t dev; - int rw; - struct proc *p; -{ - - /* XXX is this distinguished from 1 for data available? */ - return (ENODEV); -} - int nommap(dev, offset, nprot) dev_t dev; @@ -288,19 +277,6 @@ nxioctl(dev, cmd, data, flags, p) return (ENXIO); } -int -nxselect(dev, rw, p) - dev_t dev; - int rw; - struct proc *p; -{ - - printf("nxselect(0x%x) called\n", dev); - - /* XXX is this distinguished from 1 for data available? */ - return (ENXIO); -} - int nxdump(dev) dev_t dev;