]> Git Repo - binutils.git/blob - bfd/hosts/h-m68kv.h
Uses the new small reloc type now.
[binutils.git] / bfd / hosts / h-m68kv.h
1 /* $Id$ */
2
3 #include <sys/types.h>
4 #include <sys/file.h>
5 #include <fcntl.h>
6 #include <errno.h>
7 #include <stdio.h>
8 #include <sys/stat.h>
9 #include <ctype.h>
10 #include <string.h>
11 #include <malloc.h>
12
13 #define USG
14
15 #ifdef __GNUC__
16 #define alloca __builtin_alloca
17 #endif
18
19
20 #ifndef O_ACCMODE
21 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
22 #endif
23 #define SEEK_SET 0
24 #define SEEK_CUR 1
25
26 #include <memory.h>
27 #define bcmp(b1,b2,len)         memcmp(b1,b2,len)
28 #define bcopy(src,dst,len)      memcpy(dst,src,len)
29 #define bzero(s,n)              memset(s,0,n)
30
31 #include <string.h>
32 #define index(s,c)              strchr(s,c)
33 #define rindex(s,c)             strrchr(s,c)
34
35
36 /* EXACT TYPES */
37 typedef char int8e_type;
38 typedef unsigned char uint8e_type;
39 typedef short int16e_type;
40 typedef unsigned short uint16e_type;
41 typedef int int32e_type;
42 typedef unsigned int uint32e_type;
43
44 /* CORRECT SIZE OR GREATER */
45 typedef char int8_type;
46 typedef unsigned char uint8_type;
47 typedef short int16_type;
48 typedef unsigned short uint16_type;
49 typedef int int32_type;
50 typedef unsigned int uint32_type;
51
This page took 0.025495 seconds and 4 git commands to generate.