diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-01-26 20:51:37 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-26 20:51:37 +0000 |
commit | 158991b7e5be34f9464adadacb734743d4e39ca6 (patch) | |
tree | d6963b0f465ce20472a59151e1711f58104f858f /gcc/cp/xref.c | |
parent | 5c5c34a4cb563453ca1f30af9ee6499742a39e45 (diff) | |
download | gcc-158991b7e5be34f9464adadacb734743d4e39ca6.zip gcc-158991b7e5be34f9464adadacb734743d4e39ca6.tar.gz gcc-158991b7e5be34f9464adadacb734743d4e39ca6.tar.bz2 |
call.c: PROTO -> PARAMS.
* call.c: PROTO -> PARAMS.
* class.c: Likewise.
* cp-tree.h: Likewise.
* cvt.c: Likewise.
* decl.c: Likewise.
* decl.h: Likewise.
* decl2.c: Likewise.
* dump.c: Likewise.
* errfn.c: Likewise.
* error.c: Likewise.
* except.c: Likewise.
* expr.c: Likewise.
* init.c: Likewise.
* input.c: Likewise.
* lex.c: Likewise.
* lex.h: Likewise.
* method.c: Likewise.
* optimize.c: Likewise.
* parse.y: Likewise.
* pt.c: Likewise.
* repo.c: Likewise.
* rtti.c: Likewise.
* search.c: Likewise.
* semantics.c: Likewise.
* spew.c: Likewise.
* tree.c: Likewise.
* typeck.c: Likewise.
* typeck2.c: Likewise.
* xref.c: Likewise.
From-SVN: r31632
Diffstat (limited to 'gcc/cp/xref.c')
-rw-r--r-- | gcc/cp/xref.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/cp/xref.c b/gcc/cp/xref.c index 94b757b..22a4ab8 100644 --- a/gcc/cp/xref.c +++ b/gcc/cp/xref.c @@ -1,5 +1,5 @@ /* Code for handling XREF output from GNU C++. - Copyright (C) 1992, 93-97, 1998 Free Software Foundation, Inc. + Copyright (C) 1992, 93-97, 1998, 2000 Free Software Foundation, Inc. Contributed by Michael Tiemann (tiemann@cygnus.com) This file is part of GNU CC. @@ -117,15 +117,15 @@ static tree last_fndecl = NULL; /* Forward definitions */ /* */ /************************************************************************/ -static void gen_assign PROTO((XREF_FILE, tree)); -static XREF_FILE find_file PROTO((const char *)); -static const char * filename PROTO((XREF_FILE)); -static const char * fctname PROTO((tree)); -static const char * declname PROTO((tree)); -static void simplify_type PROTO((char *)); -static const char * fixname PROTO((const char *, char *)); -static void open_xref_file PROTO((const char *)); -static const char * classname PROTO((tree)); +static void gen_assign PARAMS ((XREF_FILE, tree)); +static XREF_FILE find_file PARAMS ((const char *)); +static const char * filename PARAMS ((XREF_FILE)); +static const char * fctname PARAMS ((tree)); +static const char * declname PARAMS ((tree)); +static void simplify_type PARAMS ((char *)); +static const char * fixname PARAMS ((const char *, char *)); +static void open_xref_file PARAMS ((const char *)); +static const char * classname PARAMS ((tree)); /* Start cross referencing. FILE is the name of the file we xref. */ |