diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2013-06-04 06:38:01 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2013-06-04 06:38:01 +0000 |
| commit | f9d4b3926ae7568138d660a62a63fa57d0b3f833 (patch) | |
| tree | 651127d9bdfc4e9cb683a6d7b800a2240976c2ae /sys | |
| parent | da38420832c415a7089534f3ff8ecf95ce5345d1 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/filemon/filemon.c | 5 | ||||
| -rw-r--r-- | sys/dev/filemon/filemon_wrapper.c | 2 | ||||
| -rw-r--r-- | sys/modules/filemon/Makefile | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/sys/dev/filemon/filemon.c b/sys/dev/filemon/filemon.c index 0108ed156f15..8b562e3b5017 100644 --- a/sys/dev/filemon/filemon.c +++ b/sys/dev/filemon/filemon.c @@ -25,10 +25,11 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> +#include <sys/param.h> __FBSDID("$FreeBSD$"); -#include <sys/param.h> +#include "opt_compat.h" + #include <sys/file.h> #include <sys/systm.h> #include <sys/buf.h> diff --git a/sys/dev/filemon/filemon_wrapper.c b/sys/dev/filemon/filemon_wrapper.c index 8ea2cb65a55c..83ff94f963b7 100644 --- a/sys/dev/filemon/filemon_wrapper.c +++ b/sys/dev/filemon/filemon_wrapper.c @@ -28,6 +28,8 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include "opt_compat.h" + #if __FreeBSD_version > 800032 #define FILEMON_HAS_LINKAT #endif diff --git a/sys/modules/filemon/Makefile b/sys/modules/filemon/Makefile index e6df2bc90da2..80cc0a095abf 100644 --- a/sys/modules/filemon/Makefile +++ b/sys/modules/filemon/Makefile @@ -4,6 +4,6 @@ KMOD= filemon SRCS= ${KMOD}.c -SRCS+= vnode_if.h opt_compat.h opt_capsicum.h +SRCS+= opt_compat.h .include <bsd.kmod.mk> |
