diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-11-12 06:43:28 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-11-12 06:43:28 +0000 |
| commit | d2d3e8751c3b7831f7064ccf400978b75b696547 (patch) | |
| tree | 2f26975a8fd164c9658b820d74c731c86cbb9e18 /sys/kern/kern_exec.c | |
| parent | 2f1ba63ba85a5689771dc1294c47ecef2c2c9a23 (diff) | |
Notes
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 e827ac98edd5..ad17da0ea801 100644 --- a/sys/kern/kern_exec.c +++ b/sys/kern/kern_exec.c @@ -28,11 +28,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kern_exec.c,v 1.24 1995/10/21 08:38:11 davidg Exp $ + * $Id: kern_exec.c,v 1.25 1995/11/06 12:52:32 davidg Exp $ */ #include <sys/param.h> #include <sys/systm.h> +#include <sys/sysproto.h> #include <sys/signalvar.h> #include <sys/kernel.h> #include <sys/mount.h> @@ -62,11 +63,13 @@ static int exec_check_permissions(struct image_params *); */ const struct execsw **execsw = (const struct execsw **)&execsw_set.ls_items[0]; +#ifndef _SYS_SYSPROTO_H_ struct execve_args { char *fname; char **argv; char **envv; }; +#endif /* * execve() system call. |
