diff options
author | bde <bde@FreeBSD.org> | 1997-11-18 11:30:10 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-11-18 11:30:10 +0000 |
commit | 050f62450b318cffbb2e37e459f231c491b46abf (patch) | |
tree | 2adbbf6f720f85c7a8b1f55942201cb20b2a1062 /sys/dev/mse | |
parent | 17497cdb02e20b45586622c72a23751870759d4b (diff) | |
download | FreeBSD-src-050f62450b318cffbb2e37e459f231c491b46abf.zip FreeBSD-src-050f62450b318cffbb2e37e459f231c491b46abf.tar.gz |
Get select stuff by #including <sys/select.h> instead of <sys/proc.h>.
Diffstat (limited to 'sys/dev/mse')
-rw-r--r-- | sys/dev/mse/mse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mse/mse.c b/sys/dev/mse/mse.c index 8be260c..8403d45 100644 --- a/sys/dev/mse/mse.c +++ b/sys/dev/mse/mse.c @@ -11,7 +11,7 @@ * this software for any purpose. It is provided "as is" * without express or implied warranty. * - * $Id: mse.c,v 1.33 1997/07/20 14:10:06 bde Exp $ + * $Id: mse.c,v 1.34 1997/09/14 03:19:10 peter Exp $ */ /* * Driver for the Logitech and ATI Inport Bus mice for use with 386bsd and @@ -49,9 +49,9 @@ #include <sys/param.h> #include <sys/systm.h> #include <sys/conf.h> -#include <sys/proc.h> #include <sys/kernel.h> #include <sys/poll.h> +#include <sys/select.h> #include <sys/uio.h> #ifdef DEVFS #include <sys/devfsext.h> |