diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2010-11-22 20:23:18 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2010-11-22 20:23:18 +0000 |
commit | 95353459aee95191a27232173bc1b12774453ddf (patch) | |
tree | 0f1aa25c6f86e1ddf1b879379016dd9d1e11be1f /sys/compat/linux | |
parent | 70557f4f838e4e4997909e0a18df439b18453bb4 (diff) | |
download | src-95353459aee95191a27232173bc1b12774453ddf.tar.gz src-95353459aee95191a27232173bc1b12774453ddf.zip |
Fix linux kernel module breakage introduced in r215675, by including
<sys/sysent.h>.
Noticed by: many
Pointy hat to: netchild
Notes
Notes:
svn path=/head/; revision=215706
Diffstat (limited to 'sys/compat/linux')
-rw-r--r-- | sys/compat/linux/linux_emul.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/compat/linux/linux_emul.c b/sys/compat/linux/linux_emul.c index b25d5ba5043f..31de4dd0ee42 100644 --- a/sys/compat/linux/linux_emul.c +++ b/sys/compat/linux/linux_emul.c @@ -41,6 +41,7 @@ __FBSDID("$FreeBSD$"); #include <sys/sx.h> #include <sys/proc.h> #include <sys/syscallsubr.h> +#include <sys/sysent.h> #include <sys/sysproto.h> #include <sys/unistd.h> |