diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-04-08 22:55:33 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-08 16:55:33 -0600 |
commit | 10a998b0c2d15e9e2ee17c94533f02c0d8a1a171 (patch) | |
tree | ce381af3215bc7a53ef270707ff7510de2d8a422 /gcc/protoize.c | |
parent | e105f02cd831e95c009d62f991e7d856e8d5f135 (diff) | |
download | gcc-10a998b0c2d15e9e2ee17c94533f02c0d8a1a171.zip gcc-10a998b0c2d15e9e2ee17c94533f02c0d8a1a171.tar.gz gcc-10a998b0c2d15e9e2ee17c94533f02c0d8a1a171.tar.bz2 |
* protoize.c (creat, read, write): Do not declare.
From-SVN: r19061
Diffstat (limited to 'gcc/protoize.c')
-rw-r--r-- | gcc/protoize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/protoize.c b/gcc/protoize.c index e61e92e6..699bfe6 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -163,14 +163,14 @@ typedef char * const_pointer_type; /* Declaring stat or __flsbuf with a prototype causes conflicts with system headers on some systems. */ -extern int creat (); #if 0 /* These conflict with stdio.h on some systems. */ +extern int creat (); extern int fprintf (FILE *, const char *, ...); extern int printf (const char *, ...); extern int open (const char *, int, ...); -#endif /* 0 */ extern int read (); extern int write (); +#endif /* 0 */ extern int close (); extern int fflush (); extern int atoi (); |