* hosts/std-host.h (struct int64e_struct): Remove needless typedef

keyword.
This commit is contained in:
Jim Kingdon
1993-06-12 23:15:20 +00:00
parent 80af2bd319
commit 6d792f42f3
2 changed files with 11 additions and 1 deletions

View File

@@ -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