diff options
author | Per Fogelstrom <pefo@cvs.openbsd.org> | 1996-10-02 21:47:54 +0000 |
---|---|---|
committer | Per Fogelstrom <pefo@cvs.openbsd.org> | 1996-10-02 21:47:54 +0000 |
commit | 5fa96388e1bba277c29d9f29e85781650875b50e (patch) | |
tree | 0243eda4e363e4a0988b78346c762c55792757df | |
parent | 0ce0d686bb29e9ff65a65b17caecf8e5cc3765e9 (diff) |
Some changes to macros
-rw-r--r-- | sys/arch/arc/include/ecoff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arc/include/ecoff.h b/sys/arch/arc/include/ecoff.h index 3e26b3a3fe5..53a443c2938 100644 --- a/sys/arch/arc/include/ecoff.h +++ b/sys/arch/arc/include/ecoff.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ecoff.h,v 1.2 1996/07/30 22:23:27 pefo Exp $ */ +/* $OpenBSD: ecoff.h,v 1.3 1996/10/02 21:47:53 pefo Exp $ */ /* $NetBSD: ecoff.h,v 1.4 1995/06/16 02:07:33 mellon Exp $ */ /* @@ -44,7 +44,7 @@ #define ECOFF_MAGIC_MIPSEL 0x0162 #define ECOFF_BADMAG(ex) ((ex)->f.f_magic != ECOFF_MAGIC_MIPSEL) -#define ECOFF_SEGMENT_ALIGNMENT(eap) ((eap)->ea_vstamp < 23 ? 8 : 16) +#define ECOFF_SEGMENT_ALIGNMENT(ep) ((ep)->a.vstamp < 23 ? 8 : 16) struct ecoff_symhdr { int16_t sh_magic; |