]> Git Repo - binutils.git/blob - bfd/hosts/sun3.h
* hosts/h-amix.h (free): Fix prototype.
[binutils.git] / bfd / hosts / sun3.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 #ifndef O_ACCMODE
10 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
11 #endif
12 #define SEEK_SET 0
13 #define SEEK_CUR 1
14
15 extern PROTO(int, abort,(void));
16 extern PROTO(int, close,(int));
17 extern PROTO(int, fcntl,(int des, int cmd, int e));
18 extern PROTO(int, fprintf,(FILE *,char *,...));
19 extern PROTO(int, printf,(char *,...));
20 extern PROTO(int, qsort,(void *data,int els, int siz, int func()));
21 extern PROTO(int, exit,(int));
22 extern PROTO(int, fseek,(FILE*, int, int));
23 extern PROTO(int, fclose,(FILE*));
24 extern PROTO(void, bcopy,(char*,char*,int));
25 extern PROTO(int, bcmp,(char *, char *, int));
26 extern PROTO(void, bzero,(char *, int));
27 extern char * strchr();
28 extern PROTO(void, perror,(char *));
29 extern char *getenv();
30 extern char *memchr();
31 extern char *strrchr();
32 extern int chmod();
33 extern int fread();
34 extern int fstat();
35 extern int fwrite();
36 extern int sscanf();
37 extern int stat();
38 extern int strtol();
39 void free();
40 char *malloc();
41 char *realloc();
42 PROTO (void, perror, (char *s));
43 extern char *strrchr();
44 extern char *ctime();
45 extern int _flsbuf();
46 extern int fclose();
47 extern int time();
48 extern int utimes();
49 extern int vfprintf();
50 extern long atol();
51 extern char *getenv();
52 extern int fputc();
53 extern int unlink();
54
55
56 /* EXACT TYPES */
57 typedef char int8e_type;
58 typedef unsigned char uint8e_type;
59 typedef short int16e_type;
60 typedef unsigned short uint16e_type;
61 typedef int int32e_type;
62 typedef unsigned int uint32e_type;
63
64 /* CORRECT SIZE OR GREATER */
65 typedef char int8_type;
66 typedef unsigned char uint8_type;
67 typedef short int16_type;
68 typedef unsigned short uint16_type;
69 typedef int int32_type;
70 typedef unsigned int uint32_type;
71
This page took 0.024423 seconds and 4 git commands to generate.