aboutsummaryrefslogtreecommitdiff
path: root/bfd/hosts
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-06-12 23:15:20 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-06-12 23:15:20 +0000
commit6d792f42f33b6777728f4ab00c8a4e4cf5ce4a38 (patch)
tree0dd112c2b5d73c196c4f4e07524c458424a014a1 /bfd/hosts
parent80af2bd319adf65d9a1ff06c9b498d1caeb16a12 (diff)
downloadgdb-6d792f42f33b6777728f4ab00c8a4e4cf5ce4a38.zip
gdb-6d792f42f33b6777728f4ab00c8a4e4cf5ce4a38.tar.gz
gdb-6d792f42f33b6777728f4ab00c8a4e4cf5ce4a38.tar.bz2
* hosts/std-host.h (struct int64e_struct): Remove needless typedef
keyword.
Diffstat (limited to 'bfd/hosts')
-rw-r--r--bfd/hosts/std-host.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/hosts/std-host.h b/bfd/hosts/std-host.h
index bb4d91e..20ba5b3 100644
--- a/bfd/hosts/std-host.h
+++ b/bfd/hosts/std-host.h
@@ -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