(int64e_type): Fix definition.
[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 /* EXACT TYPES */
41 typedef char int8e_type;
42 typedef unsigned char uint8e_type;
43 typedef short int16e_type;
44 typedef unsigned short uint16e_type;
45 typedef int int32e_type;
46 typedef unsigned int uint32e_type;
47
48 /* CORRECT SIZE OR GREATER */
49 typedef char int8_type;
50 typedef unsigned char uint8_type;
51 typedef short int16_type;
52 typedef unsigned short uint16_type;
53 typedef int int32_type;
54 typedef unsigned int uint32_type;
55
56 #include "fopen-same.h"
57
58 #endif /* _HPPAHPUX_H */
This page took 0.031717 seconds and 4 git commands to generate.