From 925d12eac5f58aa42efb17314e9562421e97bc13 Mon Sep 17 00:00:00 2001 From: Mark Newton Date: Fri, 5 Feb 1999 13:52:15 +0000 Subject: [PATCH] Style nit: sort elf_brand_inuse() prototype in with the others. Prototype also needed to be added for !ELFCLASS32 case. Submitted by: bde --- sys/sys/imgact_elf.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/sys/imgact_elf.h b/sys/sys/imgact_elf.h index e7985ce1fe1d..252be9afd775 100644 --- a/sys/sys/imgact_elf.h +++ b/sys/sys/imgact_elf.h @@ -25,7 +25,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_elf.h,v 1.10 1999/01/01 14:30:11 bde Exp $ + * $Id: imgact_elf.h,v 1.11 1999/02/04 12:42:39 newton Exp $ */ #ifndef _SYS_IMGACT_ELF_H_ @@ -64,9 +64,9 @@ typedef struct { #define MAX_BRANDS 8 +int elf_brand_inuse __P((Elf32_Brandinfo *entry)); int elf_insert_brand_entry __P((Elf32_Brandinfo *entry)); int elf_remove_brand_entry __P((Elf32_Brandinfo *entry)); -int elf_brand_inuse __P((Elf32_Brandinfo *entry)); #else /* !(ELF_TARG_CLASS == ELFCLASS32) */ @@ -95,6 +95,7 @@ typedef struct { #define MAX_BRANDS 8 +int elf_brand_inuse __P((Elf32_Brandinfo *entry)); int elf_insert_brand_entry __P((Elf64_Brandinfo *entry)); int elf_remove_brand_entry __P((Elf64_Brandinfo *entry));