* bfd.c: Add sgi_core_data to tdata union.
[deliverable/binutils-gdb.git] / bfd / hosts / irix4.h
1 #include <stdio.h>
2 #include <unistd.h>
3 #include <fcntl.h>
4 #include <string.h>
5 #include <errno.h>
6 #include <stdio.h>
7 #include <sys/types.h>
8 #include <sys/stat.h>
9 #include <malloc.h>
10
11 #define HOST_IRIX4
12
13 #if 0
14 #include <ctype.h>
15 #include <sys/file.h>
16 #endif
17
18 #if !defined (O_ACCMODE)
19 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
20 #endif
21
22 #if !defined (SEEK_SET)
23 #define SEEK_SET 0
24 #define SEEK_CUR 1
25 #endif
26
27 /* EXACT TYPES */
28 typedef char int8e_type;
29 typedef unsigned char uint8e_type;
30 typedef short int16e_type;
31 typedef unsigned short uint16e_type;
32 typedef int int32e_type;
33 typedef unsigned int uint32e_type;
34
35 /* CORRECT SIZE OR GREATER */
36 typedef char int8_type;
37 typedef unsigned char uint8_type;
38 typedef short int16_type;
39 typedef unsigned short uint16_type;
40 typedef int int32_type;
41 typedef unsigned int uint32_type;
42
43 #include "fopen-same.h"
This page took 0.031156 seconds and 5 git commands to generate.