Relocate symbols using an array of section_offsets, rather than a
[deliverable/binutils-gdb.git] / bfd / hosts / i386v.h
CommitLineData
660f21b7
SC
1#include <fcntl.h>
2#include <errno.h>
3#include <stdio.h>
8215bbac 4#include <sys/types.h>
660f21b7 5#include <sys/stat.h>
b271fff2 6#include <utime.h>
660f21b7
SC
7#include <ctype.h>
8#include <string.h>
8215bbac 9#include <sys/file.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
06d0bdef
JG
16#define POSIX_UTIME
17
18/* Some things that need to be defined in order to make code written for
19 BSD Unix compile under System V Unix. */
660f21b7
SC
20
21#include <memory.h>
22#define bcmp(b1,b2,len) memcmp(b1,b2,len)
23#define bcopy(src,dst,len) memcpy(dst,src,len)
24#define bzero(s,n) memset(s,0,n)
25
26#include <string.h>
27#define index(s,c) strchr(s,c)
28#define rindex(s,c) strrchr(s,c)
29
30/*
31 * Might not need these. Leave them out for now.
32 *
33#ifdef SEEK_SET
34# ifndef L_SET
35# define L_SET SEEK_SET
36# endif
37# endif
38
39#ifdef SEEK_CUR
40# ifndef L_INCR
41# define L_INCR SEEK_CUR
42# endif
43# endif
44 */
45
67099990 46#ifndef DONTDECLARE_MALLOC
302c8ab1 47extern PTR EXFUN(malloc,(unsigned));
56a56f4c 48extern PTR EXFUN(realloc, (PTR, unsigned));
302c8ab1 49extern void EXFUN(free,(PTR));
67099990
SC
50#endif
51
660f21b7
SC
52/* EXACT TYPES */
53typedef char int8e_type;
54typedef unsigned char uint8e_type;
55typedef short int16e_type;
56typedef unsigned short uint16e_type;
57typedef int int32e_type;
58typedef unsigned int uint32e_type;
59
60/* CORRECT SIZE OR GREATER */
61typedef char int8_type;
62typedef unsigned char uint8_type;
63typedef short int16_type;
64typedef unsigned short uint16_type;
65typedef int int32_type;
66typedef unsigned int uint32_type;
67
a5431adc 68#include "fopen-same.h"
This page took 0.0488150000000001 seconds and 4 git commands to generate.