* hosts/std-host.h (struct int64e_struct): Remove needless typedef
authorJim Kingdon <jkingdon@engr.sgi.com>
Sat, 12 Jun 1993 23:15:20 +0000 (23:15 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Sat, 12 Jun 1993 23:15:20 +0000 (23:15 +0000)
keyword.

bfd/ChangeLog
bfd/hosts/std-host.h

index b32f400e86c8e06b8b168bbd4c221765a2d22322..f8d2145d25894b22f8679828116e7d5e3ec0f066 100644 (file)
@@ -1,3 +1,13 @@
+Sat Jun 12 16:13:17 1993  Jim Kingdon  (kingdon@cygnus.com)
+
+       * hosts/std-host.h (struct int64e_struct): Remove needless typedef
+       keyword.
+
+Fri Jun 11 14:25:34 1993  Steve Chamberlain  (sac@phydeaux.cygnus.com)
+
+       * aoutf1.h (sunos4_write_object_contents): set flags to 1, breaking
+       1927 but fixing some other important things.
+
 Thu Jun 10 20:36:22 1993  Doug Evans  (dje@canuck.cygnus.com)
 
        * hosts/std-host.h (int64e_type): Fix definition.
index bb4d91e8dc0a3506e2fec865fe1debd526c5ebc3..20ba5b3a29cf48325e988f3c4e4ce2702a8e7119 100644 (file)
@@ -110,7 +110,7 @@ extern int unlink();
 #define uint64_typeLOW(x) (uint32_type)(((x) & 0xffffffff))
 #define uint64_typeHIGH(x) (uint32_type)(((x) >> 32) & 0xffffffff)
 #else
-typedef struct  uint64e_struct {
+struct  uint64e_struct {
   uint32e_type low, high;
 };
 #define uint64e_type struct uint64e_struct