summaryrefslogtreecommitdiff
path: root/usr.bin/elf2ecoff
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>1997-06-16 22:10:27 +0000
committerthorpej <thorpej@NetBSD.org>1997-06-16 22:10:27 +0000
commit1fb754977a95dae8a56d40e1d3eaafe3d454539d (patch)
tree7ce38d4542d2fb08acad8e7c038972e764a86e76 /usr.bin/elf2ecoff
parent483b07bee4c49eb188a271d9beb7a5b555abf988 (diff)
Need <sys/exec.h> to get stuff that <machine/ecoff_machdep.h> needs.
Diffstat (limited to 'usr.bin/elf2ecoff')
-rw-r--r--usr.bin/elf2ecoff/elf2ecoff.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/elf2ecoff/elf2ecoff.c b/usr.bin/elf2ecoff/elf2ecoff.c
index 1b42c7d1fff..b5946016836 100644
--- a/usr.bin/elf2ecoff/elf2ecoff.c
+++ b/usr.bin/elf2ecoff/elf2ecoff.c
@@ -1,4 +1,4 @@
-/* $NetBSD: elf2ecoff.c,v 1.4 1997/01/09 20:18:37 tls Exp $ */
+/* $NetBSD: elf2ecoff.c,v 1.5 1997/06/16 22:10:27 thorpej Exp $ */
/*
* Copyright (c) 1995
@@ -38,6 +38,7 @@
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
+#include <sys/exec.h>
#include <sys/exec_elf.h>
#include <sys/exec_aout.h>
#include <stdio.h>