diff options
author | imp <imp@FreeBSD.org> | 2003-06-09 06:26:50 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2003-06-09 06:26:50 +0000 |
commit | 0fcc0bc2e1753ed2258aeb72e16531d0372144e0 (patch) | |
tree | cee3ea30b856d64af242c34a723909c503d5adf4 | |
parent | dde0cbde953dfeaf33c1a045568c26e694ea752a (diff) | |
download | FreeBSD-src-0fcc0bc2e1753ed2258aeb72e16531d0372144e0.zip FreeBSD-src-0fcc0bc2e1753ed2258aeb72e16531d0372144e0.tar.gz |
Include sys/param.h for both modfind and kldload
Include sys/linker.h for kldload
Include sys/module.h for modfind
sort sys includes
-rw-r--r-- | usr.sbin/usbd/usbd.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.sbin/usbd/usbd.c b/usr.sbin/usbd/usbd.c index 9f572ab..b48e1af 100644 --- a/usr.sbin/usbd/usbd.c +++ b/usr.sbin/usbd/usbd.c @@ -54,11 +54,14 @@ #include <ctype.h> #include <signal.h> #include <paths.h> +#include <sys/param.h> #include <sys/types.h> -#include <sys/time.h> -#include <sys/ioctl.h> #include <sys/errno.h> +#include <sys/ioctl.h> +#include <sys/linker.h> +#include <sys/module.h> #include <sys/queue.h> +#include <sys/time.h> #include <sys/wait.h> #include <regex.h> |