]>
Commit | Line | Data |
---|---|---|
660f21b7 SC |
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> | |
33b6c262 | 9 | #include <malloc.h> |
660f21b7 SC |
10 | #ifndef O_ACCMODE |
11 | #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) | |
12 | #endif | |
13 | #define SEEK_SET 0 | |
14 | #define SEEK_CUR 1 | |
15 | ||
33b6c262 SC |
16 | #include <machine/param.h> |
17 | #include <machine/vmparam.h> | |
18 | #define HOST_PAGE_SIZE NBPG | |
19 | /* #define HOST_SEGMENT_SIZE NBPG -- we use HOST_DATA_START_ADDR */ | |
20 | #define HOST_MACHINE_ARCH bfd_arch_mips | |
21 | /* #define HOST_MACHINE_MACHINE */ | |
22 | ||
23 | #define HOST_TEXT_START_ADDR USRTEXT | |
24 | #define HOST_DATA_START_ADDR USRDATA | |
25 | #define HOST_STACK_END_ADDR USRSTACK | |
33b6c262 | 26 | |
8e3d1158 ILT |
27 | #undef HOST_BIG_ENDIAN_P |
28 | ||
29 | #include "fopen-same.h" | |
09a98cee | 30 | |
660f21b7 SC |
31 | /* EXACT TYPES */ |
32 | typedef char int8e_type; | |
33 | typedef unsigned char uint8e_type; | |
34 | typedef short int16e_type; | |
35 | typedef unsigned short uint16e_type; | |
36 | typedef int int32e_type; | |
37 | typedef unsigned int uint32e_type; | |
38 | ||
39 | /* CORRECT SIZE OR GREATER */ | |
40 | typedef char int8_type; | |
41 | typedef unsigned char uint8_type; | |
42 | typedef short int16_type; | |
43 | typedef unsigned short uint16_type; | |
44 | typedef int int32_type; | |
45 | typedef unsigned int uint32_type; | |
46 | ||
33b6c262 SC |
47 | /* other */ |
48 | ||
49 | extern char *getenv(); |