diff options
author | kevlo <kevlo@FreeBSD.org> | 2007-07-22 06:48:34 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2007-07-22 06:48:34 +0000 |
commit | 413e0853c2d0292c016edb6c785cebd5d754b48d (patch) | |
tree | dfa3f1936debc26a23741b2ff160ca730e0288b6 /share/examples | |
parent | 1b8c5aa24861e0817887220ae773336ef9d8af6e (diff) | |
download | FreeBSD-src-413e0853c2d0292c016edb6c785cebd5d754b48d.zip FreeBSD-src-413e0853c2d0292c016edb6c785cebd5d754b48d.tar.gz |
Include the <sys/sysproto.h> header which includes the prerequisite header
for AUE_NULL.
Approved by: re (kensmith)
Diffstat (limited to 'share/examples')
-rw-r--r-- | share/examples/kld/syscall/module/syscall.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/share/examples/kld/syscall/module/syscall.c b/share/examples/kld/syscall/module/syscall.c index f65668b..3416f3c 100644 --- a/share/examples/kld/syscall/module/syscall.c +++ b/share/examples/kld/syscall/module/syscall.c @@ -30,6 +30,7 @@ #include <sys/param.h> #include <sys/proc.h> #include <sys/module.h> +#include <sys/sysproto.h> #include <sys/sysent.h> #include <sys/kernel.h> #include <sys/systm.h> |