mirror of
https://github.com/opnsense/src.git
synced 2026-04-20 21:59:20 -04:00
Add an ELF_MACHINE_OK() macro for compatability with the Alpha version.
This commit is contained in:
parent
c8e89e8bbd
commit
034db87204
2 changed files with 6 additions and 2 deletions
|
|
@ -23,7 +23,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: elf.h,v 1.3 1998/08/16 03:03:31 jdp Exp $
|
||||
* $Id: elf.h,v 1.4 1998/09/14 20:30:12 jdp Exp $
|
||||
*/
|
||||
|
||||
#ifndef _MACHINE_ELF_H_
|
||||
|
|
@ -40,6 +40,8 @@
|
|||
|
||||
#define ELF_ARCH EM_386
|
||||
|
||||
#define ELF_MACHINE_OK(x) ((x) == EM_386 || (x) == EM_486)
|
||||
|
||||
/*
|
||||
* Auxiliary vector entries for passing information to the interpreter.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: elf.h,v 1.3 1998/08/16 03:03:31 jdp Exp $
|
||||
* $Id: elf.h,v 1.4 1998/09/14 20:30:12 jdp Exp $
|
||||
*/
|
||||
|
||||
#ifndef _MACHINE_ELF_H_
|
||||
|
|
@ -40,6 +40,8 @@
|
|||
|
||||
#define ELF_ARCH EM_386
|
||||
|
||||
#define ELF_MACHINE_OK(x) ((x) == EM_386 || (x) == EM_486)
|
||||
|
||||
/*
|
||||
* Auxiliary vector entries for passing information to the interpreter.
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in a new issue