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/i386/linux | |
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/i386/linux')
-rw-r--r-- | sys/i386/linux/imgact_linux.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/i386/linux/imgact_linux.c b/sys/i386/linux/imgact_linux.c index fa83d52..ea1b4c5 100644 --- a/sys/i386/linux/imgact_linux.c +++ b/sys/i386/linux/imgact_linux.c @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: imgact_linux.c,v 1.12 1996/03/12 06:20:16 peter Exp $ + * $Id: imgact_linux.c,v 1.13 1996/03/19 15:02:33 bde Exp $ */ #include <sys/param.h> @@ -39,7 +39,9 @@ #include <sys/imgact.h> #include <sys/imgact_aout.h> #include <sys/kernel.h> +#include <sys/proc.h> #include <sys/sysent.h> +#include <sys/vnode.h> #include <vm/vm.h> #include <vm/vm_kern.h> |