Commit 4b8ee8b9 authored by aj's avatar aj
Browse files

* friend.c: Convert to ISO C90 prototypes.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69052 138bc75d-0d04-0410-961f-82ee72b054a4
parent b98e26a6
...@@ -36,8 +36,7 @@ Boston, MA 02111-1307, USA. */ ...@@ -36,8 +36,7 @@ Boston, MA 02111-1307, USA. */
/* Returns nonzero if SUPPLICANT is a friend of TYPE. */ /* Returns nonzero if SUPPLICANT is a friend of TYPE. */
int int
is_friend (type, supplicant) is_friend (tree type, tree supplicant)
tree type, supplicant;
{ {
int declp; int declp;
register tree list; register tree list;
...@@ -131,8 +130,7 @@ is_friend (type, supplicant) ...@@ -131,8 +130,7 @@ is_friend (type, supplicant)
DECL is the FUNCTION_DECL of the friend being added. */ DECL is the FUNCTION_DECL of the friend being added. */
void void
add_friend (type, decl) add_friend (tree type, tree decl)
tree type, decl;
{ {
tree typedecl; tree typedecl;
tree list; tree list;
...@@ -194,8 +192,7 @@ add_friend (type, decl) ...@@ -194,8 +192,7 @@ add_friend (type, decl)
be in use at the same time! */ be in use at the same time! */
void void
make_friend_class (type, friend_type) make_friend_class (tree type, tree friend_type)
tree type, friend_type;
{ {
tree classes; tree classes;
int is_template_friend; int is_template_friend;
...@@ -324,12 +321,9 @@ make_friend_class (type, friend_type) ...@@ -324,12 +321,9 @@ make_friend_class (type, friend_type)
pointed to by `this'. */ pointed to by `this'. */
tree tree
do_friend (ctype, declarator, decl, parmdecls, attrlist, do_friend (tree ctype, tree declarator, tree decl, tree parmdecls,
flags, quals, funcdef_flag) tree attrlist, enum overload_flags flags, tree quals,
tree ctype, declarator, decl, parmdecls, attrlist; int funcdef_flag)
enum overload_flags flags;
tree quals;
int funcdef_flag;
{ {
int is_friend_template = 0; int is_friend_template = 0;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment