aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Edelsohn <dje.gcc@gmail.com>1993-06-11 03:38:16 +0000
committerDavid Edelsohn <dje.gcc@gmail.com>1993-06-11 03:38:16 +0000
commit06d408d2c1eae3a25538550d04257d647455fd97 (patch)
treeda9aa4cd9d52e2706b4188d8797b2578e537e22f
parentfcb6cf58184a46b32df28294e298a4b80a8245e3 (diff)
downloadgdb-06d408d2c1eae3a25538550d04257d647455fd97.zip
gdb-06d408d2c1eae3a25538550d04257d647455fd97.tar.gz
gdb-06d408d2c1eae3a25538550d04257d647455fd97.tar.bz2
(int64e_type): Fix definition.
-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 1ad6246..bb4d91e 100644
--- a/bfd/hosts/std-host.h
+++ b/bfd/hosts/std-host.h
@@ -106,7 +106,7 @@ extern int unlink();
#ifndef uint64e_type
#ifdef __GNUC__
#define uint64e_type unsigned long long
-#define int64e_type struct long long
+#define int64e_type long long
#define uint64_typeLOW(x) (uint32_type)(((x) & 0xffffffff))
#define uint64_typeHIGH(x) (uint32_type)(((x) >> 32) & 0xffffffff)
#else