* hosts/std-host.h: Return value of puts and fputs is int not void.

This commit is contained in:
Jim Kingdon 1993-06-22 21:40:17 +00:00
parent 15012ad131
commit fdebd6296a
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Tue Jun 22 16:36:51 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* hosts/std-host.h: Return value of puts and fputs is int not void.
Mon Jun 21 18:19:14 1993 Ken Raeburn (raeburn@poseidon.cygnus.com)
* elf32-target.h, elf32-hppa.c, elfcode.h: Use new

View File

@ -37,8 +37,13 @@ extern void bcopy ();
extern int bcmp ();
extern void bzero ();
extern PTR memset ();
extern void puts ();
extern void fputs ();
/* These used to be declared to return void. As far as I know that is just
wrong; are there any systems for which they actually don't return a
value (EOF for error, something else for success). */
extern int puts ();
extern int fputs ();
extern int rmdir ();
extern int getuid ();
extern int getgid ();