updated dates, added -g to hppa native CFLAGS
[deliverable/binutils-gdb.git] / bfd / hosts / news.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 int EXFUN(close,(int));
16 extern int EXFUN(fcntl,(int des, int cmd, int e));
17 extern int EXFUN(fprintf,(FILE *,char *,...));
18 extern int EXFUN(printf,(char *,...));
19 extern int EXFUN(qsort,(void *data,int els, int siz, int func()));
20 extern int EXFUN(fseek,(FILE*, int, int));
21 extern int EXFUN(fclose,(FILE*));
22 extern void EXFUN(bcopy,(char*,char*,int));
23 extern int EXFUN(bcmp,(char *, char *, int));
24 extern void EXFUN(bzero,(char *, int));
25 extern void EXFUN(perror,(CONST char *));
26 extern char *getenv();
27 extern char * strchr();
28 extern char *memchr();
29 extern char *strrchr();
30 extern int chmod();
31 extern int fread();
32 extern int fstat();
33 extern int fwrite();
34 extern int sscanf();
35 extern int stat();
36 extern int strtol();
37 void free();
38 char *malloc();
39 char *realloc();
40 extern char *strrchr();
41 extern char *ctime();
42 extern int _flsbuf();
43 extern int fclose();
44 extern int time();
45 extern int utimes();
46 extern int vfprintf();
47 extern long atol();
48 extern char *getenv();
49 extern int fputc();
50 extern int unlink();
51
52 #define HOST_BIG_ENDIAN_P
53
54 /* EXACT TYPES */
55 typedef char int8e_type;
56 typedef unsigned char uint8e_type;
57 typedef short int16e_type;
58 typedef unsigned short uint16e_type;
59 typedef int int32e_type;
60 typedef unsigned int uint32e_type;
61
62 /* CORRECT SIZE OR GREATER */
63 typedef char int8_type;
64 typedef unsigned char uint8_type;
65 typedef short int16_type;
66 typedef unsigned short uint16_type;
67 typedef int int32_type;
68 typedef unsigned int uint32_type;
69 #include "fopen-same.h"
This page took 0.031009 seconds and 4 git commands to generate.