diff options
author | bde <bde@FreeBSD.org> | 1996-05-01 02:43:13 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-05-01 02:43:13 +0000 |
commit | f92cdcae9936577a691cef736c15f8291c592997 (patch) | |
tree | 4d73706536859631a31b577d0fd5facaf4d0b663 /sys/kern/kern_exec.c | |
parent | 82c1afdaa1e8eef12f3ed9b548daa1fcf118f4cd (diff) | |
download | FreeBSD-src-f92cdcae9936577a691cef736c15f8291c592997.zip FreeBSD-src-f92cdcae9936577a691cef736c15f8291c592997.tar.gz |
Removed unnecessary #includes from <sys/imgact.h> so that it is
self-sufficient and added explicit #includes where required.
Diffstat (limited to 'sys/kern/kern_exec.c')
-rw-r--r-- | sys/kern/kern_exec.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c index 444d737..50a5388 100644 --- a/sys/kern/kern_exec.c +++ b/sys/kern/kern_exec.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kern_exec.c,v 1.38 1996/04/08 01:21:59 davidg Exp $ + * $Id: kern_exec.c,v 1.39 1996/04/29 15:07:59 smpatel Exp $ */ #include <sys/param.h> @@ -39,11 +39,14 @@ #include <sys/imgact.h> #include <sys/imgact_elf.h> #include <sys/wait.h> +#include <sys/proc.h> #include <sys/malloc.h> +#include <sys/namei.h> #include <sys/sysent.h> #include <sys/syslog.h> #include <sys/shm.h> #include <sys/sysctl.h> +#include <sys/vnode.h> #include <vm/vm.h> #include <vm/vm_param.h> |