Get 64bit stuff right.
[deliverable/binutils-gdb.git] / bfd / hosts / apollo68.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 <strings.h>
8 #ifndef O_ACCMODE
9 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
10 #endif
11 #ifndef SEEK_SET
12 #define SEEK_SET 0
13 #define SEEK_CUR 1
14 #endif
15
16 #ifndef MAXPATHLEN
17 #define MAXPATHLEN 1024
18 #endif /* MAXPATHLEN */
19
20 #ifndef DONTDECLARE_MALLOC
21 extern PTR EXFUN(malloc,(unsigned));
22 extern PTR EXFUN(realloc, (PTR, unsigned));
23 extern void EXFUN( free,(PTR));
24 #endif
25
26 #include "fopen-same.h"
This page took 0.047679 seconds and 4 git commands to generate.