(enum bfd_reloc_code_real): Move SPARC_BASE13 and SPARC_WDISP19 to more
[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
SC
5#include <sys/stat.h>
6#include <ctype.h>
7#include <string.h>
c5ab244b
SEF
8#include <unistd.h>
9
660f21b7
SC
10#ifndef O_ACCMODE
11#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
12#endif
c5ab244b 13#ifndef SEEK_SET
660f21b7
SC
14#define SEEK_SET 0
15#define SEEK_CUR 1
c5ab244b
SEF
16#endif
17
3fd7451e 18#define USE_UTIME
06d0bdef
JG
19
20/* Some things that need to be defined in order to make code written for
21 BSD Unix compile under System V Unix. */
660f21b7 22
c5ab244b 23/*#include <memory.h>*/
660f21b7
SC
24#define bcmp(b1,b2,len) memcmp(b1,b2,len)
25#define bcopy(src,dst,len) memcpy(dst,src,len)
26#define bzero(s,n) memset(s,0,n)
27
28#include <string.h>
660f21b7 29
67099990 30#ifndef DONTDECLARE_MALLOC
302c8ab1 31extern PTR EXFUN(malloc,(unsigned));
56a56f4c 32extern PTR EXFUN(realloc, (PTR, unsigned));
302c8ab1 33extern void EXFUN(free,(PTR));
67099990
SC
34#endif
35
a5431adc 36#include "fopen-same.h"
This page took 0.075261 seconds and 4 git commands to generate.