Include sys/param.h for both modfind and kldload

Include sys/linker.h for kldload
Include sys/module.h for modfind
sort sys includes
This commit is contained in:
Warner Losh 2003-06-09 06:26:50 +00:00
parent dbf4064dcf
commit 10aea17ec2

View File

@ -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>