* hppahpux.h: Add defs for malloc() & realloc().
[deliverable/binutils-gdb.git] / bfd / hosts / amix.h
1 /* Amiga Unix host system */
2
3 #include <fcntl.h>
4 #include <errno.h>
5 #include <stdio.h>
6 #include <sys/types.h>
7 #include <sys/stat.h>
8 #include <utime.h>
9 #include <ctype.h>
10 #include <string.h>
11 #include <sys/file.h>
12
13 #ifndef O_ACCMODE
14 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
15 #endif
16 #define SEEK_SET 0
17 #define SEEK_CUR 1
18
19 #define POSIX_UTIME
20 #define HAVE_PROCFS /* This host has /proc support */
21
22 extern void EXFUN( abort,(void));
23 extern int EXFUN( close,(int));
24 extern void EXFUN( exit,(int));
25 extern int EXFUN( fclose,(FILE*));
26 extern void EXFUN( free,(PTR));
27 extern int EXFUN( fseek,(FILE*, long, int));
28 extern int EXFUN( getgid,());
29 extern int EXFUN( getuid,());
30 extern PTR EXFUN( malloc,(unsigned));
31 extern void EXFUN( perror,(CONST char *));
32 extern int EXFUN( qsort,(void *data,int els, int siz, int func()));
33 extern PTR EXFUN( realloc, (PTR, unsigned));
34
35 extern char *getenv();
36 extern int chmod();
37 extern int fstat();
38 extern int stat();
39 extern int strtol();
40
41 extern char *ctime();
42 extern int _flsbuf();
43 extern int fclose();
44 extern int utimes();
45 extern int vfprintf();
46 extern long atol();
47 extern int fputc();
48 extern int unlink();
49
50 /* EXACT TYPES */
51 typedef char int8e_type;
52 typedef unsigned char uint8e_type;
53 typedef short int16e_type;
54 typedef unsigned short uint16e_type;
55 typedef int int32e_type;
56 typedef unsigned int uint32e_type;
57
58 /* CORRECT SIZE OR GREATER */
59 typedef char int8_type;
60 typedef unsigned char uint8_type;
61 typedef short int16_type;
62 typedef unsigned short uint16_type;
63 typedef int int32_type;
64 typedef unsigned int uint32_type;
65
66 #include "fopen-same.h"
This page took 0.030539 seconds and 4 git commands to generate.