* config/sun3.h: String argument to fprintf is const.
[deliverable/binutils-gdb.git] / bfd / hosts / sun3.h
index d1df8d62b1548a8718d60c33df75672b9c70294a..03008363e051b93e8465b108f17d2d4925217058 100644 (file)
 #define SEEK_SET 0
 #define SEEK_CUR 1
 
+#ifdef __STDC__
 extern void EXFUN(free,(PTR));
-extern int  EXFUN(abort,(void));
+#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 *,char *,...));
+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 int  EXFUN(exit,(int));
+extern void  EXFUN(exit,(int));
 extern int  EXFUN(fseek,(FILE*, int, int));
 extern int  EXFUN(fclose,(FILE*));
 extern void EXFUN(bcopy,(char*,char*,int));
@@ -38,8 +42,10 @@ extern int fwrite();
 extern int sscanf();
 extern int stat();
 extern int strtol();
-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();
This page took 0.023283 seconds and 4 git commands to generate.