diff options
author | Peter Wemm <peter@FreeBSD.org> | 2002-07-17 23:41:58 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2002-07-17 23:41:58 +0000 |
commit | 754a3615a0c58c83178f8239546494b38bab0c07 (patch) | |
tree | 2b6aa01aa714baccfaa0806af32e7339bd04cd43 /usr.sbin/kldxref/ef.c | |
parent | 8a2bd345603a1367842bf01cf15b0dcb5fc46f37 (diff) | |
download | src-754a3615a0c58c83178f8239546494b38bab0c07.tar.gz src-754a3615a0c58c83178f8239546494b38bab0c07.zip |
This is a userland tool, not a kernel component or libstand client.
Notes
Notes:
svn path=/head/; revision=100272
Diffstat (limited to 'usr.sbin/kldxref/ef.c')
-rw-r--r-- | usr.sbin/kldxref/ef.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/kldxref/ef.c b/usr.sbin/kldxref/ef.c index 4437effcfbe8..949047113013 100644 --- a/usr.sbin/kldxref/ef.c +++ b/usr.sbin/kldxref/ef.c @@ -33,14 +33,14 @@ */ #include <sys/param.h> -#include <sys/exec.h> -#include <sys/queue.h> -#include <sys/kernel.h> -#include <sys/reboot.h> #include <sys/linker.h> #include <string.h> +#include <stdio.h> +#include <stdlib.h> +#include <unistd.h> +#include <errno.h> +#include <fcntl.h> #include <machine/elf.h> -#include <stand.h> #define FREEBSD_ELF #include <link.h> |