diff options
author | 2013-02-09 21:03:22 +0000 | |
---|---|---|
committer | 2013-02-09 21:03:22 +0000 | |
commit | 8ef694c87a620265be1c4be5ea5d5b5aa883bb6d (patch) | |
tree | acb40a157f79db68aa8c2af18969c8f51b4f0703 | |
parent | Replace a bunch of if () else if () else if () else if () ... with that (diff) | |
download | wireguard-openbsd-8ef694c87a620265be1c4be5ea5d5b5aa883bb6d.tar.xz wireguard-openbsd-8ef694c87a620265be1c4be5ea5d5b5aa883bb6d.zip |
Remove no longer used struct emul extern declarations.
-rw-r--r-- | sys/kern/exec_conf.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/kern/exec_conf.c b/sys/kern/exec_conf.c index eade785898b..c12e806e566 100644 --- a/sys/kern/exec_conf.c +++ b/sys/kern/exec_conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exec_conf.c,v 1.28 2011/07/04 22:53:53 tedu Exp $ */ +/* $OpenBSD: exec_conf.c,v 1.29 2013/02/09 21:03:22 miod Exp $ */ /* $NetBSD: exec_conf.c,v 1.16 1995/12/09 05:34:47 cgd Exp $ */ /* @@ -48,8 +48,7 @@ #endif extern struct emul emul_native, emul_elf32, emul_elf64, emul_aout, - emul_freebsd_aout, emul_freebsd_elf, - emul_linux_elf, emul_linux_aout, emul_netbsd_elf64; + emul_linux_elf, emul_linux_aout; struct execsw execsw[] = { { EXEC_SCRIPT_HDRSZ, exec_script_makecmds, &emul_native, }, /* shell scripts */ |