Added MISSING_VFPRINTF
[deliverable/binutils-gdb.git] / bfd / hosts / rtbsd.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 <sys/file.h>
9
10 #ifndef O_ACCMODE
11 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
12 #endif
13
14 #define MISSING_VFPRINTF /* Presumably. */
15
16 #define SEEK_SET 0
17 #define SEEK_CUR 1
18
19 extern char *malloc();
20 extern void free();
21
22
23 /* EXACT TYPES */
24 typedef char int8e_type;
25 typedef unsigned char uint8e_type;
26 typedef short int16e_type;
27 typedef unsigned short uint16e_type;
28 typedef int int32e_type;
29 typedef unsigned int uint32e_type;
30
31 /* CORRECT SIZE OR GREATER */
32 typedef char int8_type;
33 typedef unsigned char uint8_type;
34 typedef short int16_type;
35 typedef unsigned short uint16_type;
36 typedef int int32_type;
37 typedef unsigned int uint32_type;
This page took 0.032098 seconds and 5 git commands to generate.