2af77ba6f637dfba4b958a11e752d69c8e168329
[deliverable/binutils-gdb.git] / bfd / hosts / irix3.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 #if 0
12 #include <ctype.h>
13 #include <sys/file.h>
14 #endif
15
16 #if !defined (O_ACCMODE)
17 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
18 #endif
19
20 #ifdef SEEK_SET
21 # ifndef L_SET
22 # define L_SET SEEK_SET
23 # endif
24 # endif
25
26
27 #if !defined (SEEK_SET)
28 #define SEEK_SET 0
29 #define SEEK_CUR 1
30 #endif
31
32 /* EXACT TYPES */
33 typedef char int8e_type;
34 typedef unsigned char uint8e_type;
35 typedef short int16e_type;
36 typedef unsigned short uint16e_type;
37 typedef int int32e_type;
38 typedef unsigned int uint32e_type;
39
40 /* CORRECT SIZE OR GREATER */
41 typedef char int8_type;
42 typedef unsigned char uint8_type;
43 typedef short int16_type;
44 typedef unsigned short uint16_type;
45 typedef int int32_type;
46 typedef unsigned int uint32_type;
47
48 #include "fopen-same.h"
This page took 0.029613 seconds and 3 git commands to generate.