Checkpoint. Can now read relocs.
[deliverable/binutils-gdb.git] / bfd / hosts / hppahpux.h
CommitLineData
3fd76e58
SG
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>
b85bd0c1 9#include <memory.h>
d9a30dc6
SG
10#include <stdlib.h>
11
12#define HOST_HPPAHPUX
ad486d77
SG
13
14void free();
15
3fd76e58
SG
16#ifndef O_ACCMODE
17#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
18#endif
19#define SEEK_SET 0
20#define SEEK_CUR 1
21
acc7c493
ILT
22#ifndef __STDC__
23#define NATIVE_HPPAHPUX_COMPILER
24#endif
25
3fd7451e
ILT
26#define USE_UTIME
27
3fd76e58
SG
28#if 0
29static int
30rename(from, to)
31{
32 unlink(to);
33 return(link(from, to));
34}
35#endif
36
3fd76e58
SG
37/* EXACT TYPES */
38typedef char int8e_type;
39typedef unsigned char uint8e_type;
40typedef short int16e_type;
41typedef unsigned short uint16e_type;
42typedef int int32e_type;
43typedef unsigned int uint32e_type;
44
45/* CORRECT SIZE OR GREATER */
46typedef char int8_type;
47typedef unsigned char uint8_type;
48typedef short int16_type;
49typedef unsigned short uint16_type;
50typedef int int32_type;
51typedef unsigned int uint32_type;
52
53#include "fopen-same.h"
This page took 0.037309 seconds and 4 git commands to generate.