aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorManfred Hollstein <manfred@s-direktnet.de>1998-12-12 23:43:59 +0000
committerJeff Law <law@gcc.gnu.org>1998-12-12 16:43:59 -0700
commit56485bee1109620c586d5233c0f92e7d9b4055ad (patch)
treec10cc2c2979dbcff3303f6ed7553b215dd716b7e /gcc
parentf08347a9b5a1d08f55972a5b6008ed7c4cd1addf (diff)
downloadgcc-56485bee1109620c586d5233c0f92e7d9b4055ad.zip
gcc-56485bee1109620c586d5233c0f92e7d9b4055ad.tar.gz
gcc-56485bee1109620c586d5233c0f92e7d9b4055ad.tar.bz2
* protoize.c (fputs): Wrap extern declaration in #ifndef fputs.
From-SVN: r24289
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/protoize.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7778618..fd30aba 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+1998-12-13 Manfred Hollstein <manfred@s-direktnet.de>
+
+ * protoize.c (fputs): Wrap extern declaration in #ifndef fputs.
+
Sun Dec 13 00:24:14 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* reload1.c (compute_use_by_pseudos): Allow reg_renumber[regno] < 0
diff --git a/gcc/protoize.c b/gcc/protoize.c
index f50e936..5e13b63 100644
--- a/gcc/protoize.c
+++ b/gcc/protoize.c
@@ -142,7 +142,9 @@ extern int close ();
extern int fflush ();
extern int atoi ();
extern int puts ();
+#ifndef fputs /* This may have been #defined by "system.h". */
extern int fputs ();
+#endif
extern int fputc ();
extern int unlink ();
extern int access ();