Move the SVR4 dispatch here.

This commit is contained in:
mycroft 1994-08-15 22:36:40 +00:00
parent 1ec65d2465
commit 77dee53b00

View File

@ -1,4 +1,4 @@
/* $NetBSD: exec_conf.c,v 1.7 1994/08/15 22:17:16 mycroft Exp $ */
/* $NetBSD: exec_conf.c,v 1.8 1994/08/15 22:36:40 mycroft Exp $ */
/*
* Copyright (c) 1993, 1994 Christopher G. Demetriou
@ -52,6 +52,10 @@
#include <sys/exec_ecoff.h>
#endif
#ifdef COMPAT_SVR4
#include <compat/svr4/svr4_exec.h>
#endif
#ifdef COMPAT_IBCS2
#include <compat/ibcs2/ibcs2_exec.h>
#endif
@ -73,6 +77,9 @@ struct execsw execsw[] = {
#ifdef EXEC_ECOFF
{ ECOFF_HDR_SIZE, exec_ecoff_makecmds, }, /* ecoff binaries */
#endif
#ifdef COMPAT_SVR4
{ ELF_HDR_SIZE, exec_svr4_elf_makecmds, }, /* elf binaries */
#endif
#ifdef COMPAT_IBCS2
{ COFF_HDR_SIZE, exec_ibcs2_coff_makecmds, }, /* coff binaries */
#endif