aboutsummaryrefslogtreecommitdiff
path: root/bfd/hosts
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1993-06-22 02:56:29 +0000
committerKen Raeburn <raeburn@cygnus>1993-06-22 02:56:29 +0000
commitd429d6064c94dc5dc93401a05440891ff822c903 (patch)
tree9ec554e9b22fdca2672435da3dfe9f4f871cddda /bfd/hosts
parent68eabdd300dc1eee81fd686041520dbb7e64e618 (diff)
downloadgdb-d429d6064c94dc5dc93401a05440891ff822c903.zip
gdb-d429d6064c94dc5dc93401a05440891ff822c903.tar.gz
gdb-d429d6064c94dc5dc93401a05440891ff822c903.tar.bz2
Don't define int64 stuff here.
Diffstat (limited to 'bfd/hosts')
-rw-r--r--bfd/hosts/std-host.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/bfd/hosts/std-host.h b/bfd/hosts/std-host.h
index 966d0c6..48dd9c4 100644
--- a/bfd/hosts/std-host.h
+++ b/bfd/hosts/std-host.h
@@ -85,30 +85,6 @@ extern int fputc();
extern int unlink();
#endif /* STDC_HEADERS */
-#ifndef uint64e_type
-#ifdef __GNUC__
-#define uint64e_type unsigned long long
-#define int64e_type long long
-#define uint64_typeLOW(x) (unsigned long)(((x) & 0xffffffff))
-#define uint64_typeHIGH(x) (unsigned long)(((x) >> 32) & 0xffffffff)
-#else
-struct uint64e_struct {
- unsigned long low, high;
-};
-#define uint64e_type struct uint64e_struct
-#define int64e_type struct uint64e_struct
-#define uint64_typeLOW(x) (unsigned long)(((x).low))
-#define uint64_typeHIGH(x) (unsigned long)(((x).high))
-#endif
-#endif
-
-#ifndef int64_type
-#define int64_type int64e_type
-#endif
-#ifndef uint64_type
-#define uint64_type uint64e_type
-#endif
-
#ifndef BYTES_IN_PRINTF_INT
#define BYTES_IN_PRINTF_INT 4
#endif