* hosts/std-host.h (struct int64e_struct): Remove needless typedef
[deliverable/binutils-gdb.git] / bfd / hosts / alphaosf.h
1 #include <fcntl.h>
2 #include <errno.h>
3 #include <stdio.h>
4 #include <sys/types.h>
5 #include <sys/stat.h>
6 #include <ctype.h>
7 #include <string.h>
8 #include <sys/file.h>
9 #include <alloca.h>
10 #include <stdlib.h>
11
12 /* Make the basic types 64-bit quantities on the host */
13 #define HOST_64_BIT long
14
15
16 /* EXACT TYPES */
17 typedef char int8e_type;
18 typedef unsigned char uint8e_type;
19 typedef short int16e_type;
20 typedef unsigned short uint16e_type;
21 typedef int int32e_type;
22 typedef unsigned int uint32e_type;
23
24
25
26 typedef unsigned long uint64e_type;
27
28
29 /* CORRECT SIZE OR GREATER */
30 typedef char int8_type;
31 typedef unsigned char uint8_type;
32 typedef short int16_type;
33 typedef unsigned short uint16_type;
34 typedef int int32_type;
35 typedef unsigned int uint32_type;
36
37
38 typedef unsigned long uint64_type;
39 typedef long int64_type;
40
41
42 #define BYTES_IN_PRINTF_INT 4
43
44 #define uint64_typeLOW(x) (uint32_type)(((x) & 0xffffffff))
45 #define uint64_typeHIGH(x) (uint32_type)(((x) >> 32) & 0xffffffff)
46 #include "fopen-same.h"
This page took 0.037425 seconds and 4 git commands to generate.