From: Ken Raeburn Date: Tue, 22 Jun 1993 02:56:29 +0000 (+0000) Subject: Don't define int64 stuff here. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d429d6064c94dc5dc93401a05440891ff822c903;p=binutils-gdb.git Don't define int64 stuff here. --- diff --git a/bfd/hosts/std-host.h b/bfd/hosts/std-host.h index 966d0c6d478..48dd9c40343 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