diff options
author | 1999-09-10 20:27:40 +0000 | |
---|---|---|
committer | 1999-09-10 20:27:40 +0000 | |
commit | 4074dd663463ca692ebcdc06cd0da4096f5dcb27 (patch) | |
tree | dd5c18f7922bc9211db4977991033f30a1c302b0 | |
parent | include sys/exec.h (which includes machine/exec.h) before sys/exec_elf.h (diff) | |
download | wireguard-openbsd-4074dd663463ca692ebcdc06cd0da4096f5dcb27.tar.xz wireguard-openbsd-4074dd663463ca692ebcdc06cd0da4096f5dcb27.zip |
include sys/exec.h before sys/exec_elf.h
-rw-r--r-- | sys/compat/linux/linux_exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_exec.c b/sys/compat/linux/linux_exec.c index c14c75ebb0a..e7e82cbd84b 100644 --- a/sys/compat/linux/linux_exec.c +++ b/sys/compat/linux/linux_exec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_exec.c,v 1.10 1999/02/10 08:07:20 deraadt Exp $ */ +/* $OpenBSD: linux_exec.c,v 1.11 1999/09/10 20:27:40 art Exp $ */ /* $NetBSD: linux_exec.c,v 1.13 1996/04/05 00:01:10 christos Exp $ */ /* @@ -39,6 +39,7 @@ #include <sys/namei.h> #include <sys/vnode.h> #include <sys/mount.h> +#include <sys/exec.h> #include <sys/exec_elf.h> #include <sys/exec_olf.h> @@ -51,7 +52,6 @@ #include <machine/cpu.h> #include <machine/reg.h> -#include <machine/exec.h> #include <machine/linux_machdep.h> #include <compat/linux/linux_types.h> |