Fix obvious typos.
This commit is contained in:
parent
13c27090e8
commit
ee3ba7ce7a
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: exec_elf.h,v 1.29 1999/10/27 09:21:35 simonb Exp $ */
|
||||
/* $NetBSD: exec_elf.h,v 1.30 1999/11/01 22:34:37 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1994 The NetBSD Foundation, Inc.
|
||||
@ -326,11 +326,11 @@ typedef struct {
|
||||
|
||||
#define ELF32_ST_BIND(info) ((info) >> 4)
|
||||
#define ELF32_ST_TYPE(info) ((info) & 0xf)
|
||||
#define ELF32_ST_INFO(bind,type) (((bind) << 4 + ((type) & 0xf))
|
||||
#define ELF32_ST_INFO(bind,type) (((bind) << 4) + ((type) & 0xf))
|
||||
|
||||
#define ELF64_ST_BIND(info) ((info) >> 4)
|
||||
#define ELF64_ST_TYPE(info) ((info) & 0xf)
|
||||
#define ELF64_ST_INFO(bind,type) (((bind) << 4 + ((type) & 0xf))
|
||||
#define ELF64_ST_INFO(bind,type) (((bind) << 4) + ((type) & 0xf))
|
||||
|
||||
/*
|
||||
* Special section indexes
|
||||
|
Loading…
Reference in New Issue
Block a user