Fix various protos so bfd/binutils compile on sun3 with gcc

This commit is contained in:
Steve Chamberlain 1992-05-18 22:46:15 +00:00
parent 5027f10757
commit de1478e115
1 changed files with 6 additions and 4 deletions

View File

@ -18,13 +18,13 @@ extern void EXFUN(free,(PTR));
#else /* not __STDC__ */
extern int EXFUN(free,(PTR));
#endif /* not __STDC__ */
extern int EXFUN(abort,(void));
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(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));
@ -42,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();