* hosts/std-host.h: Removed declarations of printf, fprintf,
authorIan Lance Taylor <ian@airs.com>
Fri, 2 Jul 1993 17:38:16 +0000 (17:38 +0000)
committerIan Lance Taylor <ian@airs.com>
Fri, 2 Jul 1993 17:38:16 +0000 (17:38 +0000)
fcntl, fread and fwrite.  They are all error prone for one reason
or another.  Changed declaration of memchr from char * to PTR.

bfd/ChangeLog
bfd/hosts/std-host.h

index c0af51fdaa864ffe96f36a5e39b3220c7f0cdef5..120a9d932b41a939ab59b7c8e5ef93d8f4254990 100644 (file)
@@ -1,5 +1,9 @@
 Fri Jul  2 09:25:20 1993  Ian Lance Taylor  (ian@cygnus.com)
 
+       * hosts/std-host.h: Removed declarations of printf, fprintf,
+       fcntl, fread and fwrite.  They are all error prone for one reason
+       or another.  Changed declaration of memchr from char * to PTR.
+
        * configure.in (mips-*-riscos*): New target; use riscos.
        * configure.host (mips-*-riscos*): New host; use riscos.
        * config/riscos.mh (HDEFINES): Add -G 4.
index 30328411b645b95074a04fdb8fcfbc548dc5d909..aeac523b62ace22f92330b23bf86f5cbbac85625 100644 (file)
 #include <stdlib.h>
 /*#include <string.h>*/
 #else
-extern int   fprintf PARAMS ((FILE *,char *,...));
-extern int   printf PARAMS((char *,...));
 extern char *mktemp ();
 extern int   fflush ();
 extern int   write ();
 extern void  abort ();
 extern int   close ();
-extern int   fcntl ();
 extern int   qsort ();
 extern void  exit ();
 extern int   fseek ();
@@ -68,12 +65,10 @@ extern int free();
 
 extern char * strchr();
 extern char *getenv();
-extern char *memchr();
+extern PTR memchr();
 extern char *strrchr();
 extern int chmod();
-extern int fread();
 extern int fstat();
-extern int fwrite();
 extern int stat();
 extern int strtol();
 
This page took 0.027094 seconds and 4 git commands to generate.