summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gnu/usr.bin/as/config/obj-aout.c2
-rw-r--r--gnu/usr.bin/as/config/obj-aout.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/as/config/obj-aout.c b/gnu/usr.bin/as/config/obj-aout.c
index 860d904..9435d07 100644
--- a/gnu/usr.bin/as/config/obj-aout.c
+++ b/gnu/usr.bin/as/config/obj-aout.c
@@ -142,7 +142,7 @@ object_headers *headers;
{
tc_headers_hook(headers);
-#if defined(FREEBSD_AOUT) || defined(NETBSD_AOUT)
+#if defined(NETBSD_AOUT)
/* `a_info' (magic, mid, flags) is in network byte-order */
(*where)[0] = ((char *)&headers->header.a_info)[0];
(*where)[1] = ((char *)&headers->header.a_info)[1];
diff --git a/gnu/usr.bin/as/config/obj-aout.h b/gnu/usr.bin/as/config/obj-aout.h
index 05ad5b3..cca03f6 100644
--- a/gnu/usr.bin/as/config/obj-aout.h
+++ b/gnu/usr.bin/as/config/obj-aout.h
@@ -17,7 +17,7 @@
License along with GAS; see the file COPYING. If not, write
to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id$
+ $Id: obj-aout.h,v 1.7 1997/02/22 15:44:22 peter Exp $
*/
@@ -168,7 +168,7 @@ typedef struct nlist obj_symbol_type; /* Symbol table entry */
#define H_SET_INFO(h,mag,mid,f,v) \
( (h)->header.a_info = \
- htonl( (((f)&0x3f)<<26) | (((mid)&0x03ff)<<16) | (((mag)&0xffff)) ) )
+ (((f)&0x3f)<<26) | (((mid)&0x03ff)<<16) | (((mag)&0xffff)) )
#endif /* FREEBSD_AOUT */
OpenPOWER on IntegriCloud