aboutsummaryrefslogtreecommitdiff
path: root/bfd/hosts/std-host.h
diff options
context:
space:
mode:
Diffstat (limited to 'bfd/hosts/std-host.h')
-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