d6b0063127e1d21b0de94b98a82484f22850391c
[deliverable/binutils-gdb.git] / bfd / hosts / i386v.h
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 <unistd.h>
9
10 #ifndef O_ACCMODE
11 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
12 #endif
13 #ifndef SEEK_SET
14 #define SEEK_SET 0
15 #define SEEK_CUR 1
16 #endif
17
18 #define USE_UTIME
19
20 /* Some things that need to be defined in order to make code written for
21 BSD Unix compile under System V Unix. */
22
23 /*#include <memory.h>*/
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>
29 #define index(s,c) strchr(s,c)
30 #define rindex(s,c) strrchr(s,c)
31
32 #ifndef DONTDECLARE_MALLOC
33 extern PTR EXFUN(malloc,(unsigned));
34 extern PTR EXFUN(realloc, (PTR, unsigned));
35 extern void EXFUN(free,(PTR));
36 #endif
37
38 /* EXACT TYPES */
39 typedef char int8e_type;
40 typedef unsigned char uint8e_type;
41 typedef short int16e_type;
42 typedef unsigned short uint16e_type;
43 typedef int int32e_type;
44 typedef unsigned int uint32e_type;
45
46 /* CORRECT SIZE OR GREATER */
47 typedef char int8_type;
48 typedef unsigned char uint8_type;
49 typedef short int16_type;
50 typedef unsigned short uint16_type;
51 typedef int int32_type;
52 typedef unsigned int uint32_type;
53
54 #include "fopen-same.h"
This page took 0.029667 seconds and 3 git commands to generate.