* Base use of sco-core on host, not target.
[deliverable/binutils-gdb.git] / bfd / hosts / hppahpux.h
1 #ifndef _HPPAHPUX_H
2 #define _HPPAHPUX_H
3
4 #include <fcntl.h>
5 #include <errno.h>
6 #include <stdio.h>
7 #include <sys/types.h>
8 #include <sys/stat.h>
9 #include <ctype.h>
10 #include <string.h>
11 #include <sys/file.h>
12 #include <memory.h>
13 #include <stdlib.h>
14
15 #define HOST_HPPAHPUX
16
17 void free();
18
19 #ifndef O_ACCMODE
20 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
21 #endif
22 #define SEEK_SET 0
23 #define SEEK_CUR 1
24
25 #ifndef __STDC__
26 #define NATIVE_HPPAHPUX_COMPILER
27 #endif
28
29 #define USE_UTIME
30
31 #if 0
32 static int
33 rename(from, to)
34 {
35 unlink(to);
36 return(link(from, to));
37 }
38 #endif
39
40 #include "fopen-same.h"
41
42 #endif /* _HPPAHPUX_H */
This page took 0.029566 seconds and 4 git commands to generate.