mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 04:00:07 +08:00
Fix various protos so bfd/binutils compile on sun3 with gcc
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user