diff options
author | wollman <wollman@FreeBSD.org> | 2001-01-09 04:33:49 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2001-01-09 04:33:49 +0000 |
commit | 70c88bb8dad8043bc6de6c2381c0f3d55e803379 (patch) | |
tree | db08626bdde4f7fc600087db865a131d6da00a65 /sys/dev/usb/uhid.c | |
parent | 73868ac960ac5a7e40b0f6c9fe5956281809d520 (diff) | |
download | FreeBSD-src-70c88bb8dad8043bc6de6c2381c0f3d55e803379.zip FreeBSD-src-70c88bb8dad8043bc6de6c2381c0f3d55e803379.tar.gz |
select() DKI is now in <sys/selinfo.h>.
Diffstat (limited to 'sys/dev/usb/uhid.c')
-rw-r--r-- | sys/dev/usb/uhid.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/usb/uhid.c b/sys/dev/usb/uhid.c index dd2a85e..1cdd455 100644 --- a/sys/dev/usb/uhid.c +++ b/sys/dev/usb/uhid.c @@ -60,7 +60,11 @@ #endif #include <sys/conf.h> #include <sys/tty.h> +#if __FreeBSD_version >= 500014 +#include <sys/selinfo.h> +#else #include <sys/select.h> +#endif #include <sys/proc.h> #include <sys/vnode.h> #include <sys/poll.h> |