* hosts/std-host.h (struct int64e_struct): Remove needless typedef
[deliverable/binutils-gdb.git] / bfd / hosts / sun3.h
index 544cf9e014e81f97776f868cbf68013ef3a17b08..03008363e051b93e8465b108f17d2d4925217058 100644 (file)
@@ -1,3 +1,4 @@
+#include <ansidecl.h>
 #include <fcntl.h>
 #include <errno.h>
 #include <stdio.h>
 #define SEEK_SET 0
 #define SEEK_CUR 1
 
-extern int EXFUN( abort,(void));
-extern int EXFUN( close,(int));
-extern int EXFUN( fcntl,(int des, int cmd, int e));
-extern int EXFUN( fprintf,(FILE *,char *,...));
-extern int EXFUN( printf,(char *,...));
-extern int EXFUN( qsort,(void *data,int els, int siz, int func()));
-extern int EXFUN( exit,(int));
-extern int EXFUN( fseek,(FILE*, int, int));
-extern int EXFUN( fclose,(FILE*));
-extern void EXFUN( bcopy,(char*,char*,int));
-extern int EXFUN( bcmp,(char *, char *, int));
-extern void EXFUN( bzero,(char *, int));
-extern char * strchr();
-extern void EXFUN( perror,(CONST char *));
+#ifdef __STDC__
+extern void EXFUN(free,(PTR));
+#else /* not __STDC__ */
+extern int EXFUN(free,(PTR));
+#endif /* not __STDC__ */
+extern void  EXFUN(abort,(void));
+extern int  EXFUN(close,(int));
+extern int  EXFUN(fcntl,(int des, int cmd, int e));
+extern int  EXFUN(fprintf,(FILE *,CONST char *,...));
+extern int  EXFUN(printf,(char *,...));
+extern int  EXFUN(qsort,(void *data,int els, int siz, int func()));
+extern void  EXFUN(exit,(int));
+extern int  EXFUN(fseek,(FILE*, int, int));
+extern int  EXFUN(fclose,(FILE*));
+extern void EXFUN(bcopy,(char*,char*,int));
+extern int  EXFUN(bcmp,(char *, char *, int));
+extern void EXFUN(bzero,(char *, int));
+extern void EXFUN(perror,(CONST char *));
 extern char *getenv();
+extern char * strchr();
 extern char *memchr();
 extern char *strrchr();
 extern int chmod();
@@ -36,9 +42,11 @@ extern int fwrite();
 extern int sscanf();
 extern int stat();
 extern int strtol();
-void free();
-char *malloc();
-char *realloc();
+#ifndef DONTDECLARE_MALLOC
+extern PTR   EXFUN(malloc,(unsigned));
+extern PTR   EXFUN(realloc, (PTR, unsigned));
+#endif
+
 extern char *strrchr();
 extern char *ctime();
 extern int _flsbuf();
This page took 0.023569 seconds and 4 git commands to generate.