]>
Commit | Line | Data |
---|---|---|
1c8c89a8 JL |
1 | #ifndef _HPPAOSF_H |
2 | #define _HPPAOSF_H | |
3 | ||
4 | #include <stddef.h> | |
5 | #include <fcntl.h> | |
6 | #include <errno.h> | |
7 | #include <stdio.h> | |
8 | #include <sys/types.h> | |
9 | #include <sys/stat.h> | |
10 | #include <ctype.h> | |
11 | #include <string.h> | |
12 | #include <sys/file.h> | |
13 | #include <stdlib.h> | |
14 | #include <unistd.h> | |
15 | ||
16 | #define HOST_HPPAOSF | |
17 | ||
18 | #ifndef O_ACCMODE | |
19 | #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) | |
20 | #endif | |
21 | ||
22 | #define SEEK_SET 0 | |
23 | #define SEEK_CUR 1 | |
24 | ||
25 | #include <machine/machparam.h> | |
26 | ||
27 | #define HOST_PAGE_SIZE NBPG | |
28 | #define HOST_SEGMENT_SIZE NBPG /* Data seg start addr rounds to NBPG */ | |
29 | #define HOST_MACHINE_ARCH bfd_arch_hppa | |
30 | /* #define HOST_MACHINE_MACHINE */ | |
31 | ||
32 | #define HOST_TEXT_START_ADDR UTEXTSEG | |
33 | #define HOST_DATA_START_ADDR UDATASEG | |
34 | #define HOST_STACK_END_ADDR KSTAKSEG | |
35 | ||
36 | #include "fopen-same.h" | |
37 | ||
38 | #endif /* _HPPAOSF_H */ |