diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-11 23:27:40 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-11 23:27:40 +0000 |
commit | 6bcfea9e23374b2596b95dee819a021c8ef67252 (patch) | |
tree | d38469d11e239e057646171b9f1320f4dfe9a82a /gcc/c-aux-info.c | |
parent | 5d0e87b7f7afa132927bdf223966b0c1669bbd3a (diff) | |
download | gcc-6bcfea9e23374b2596b95dee819a021c8ef67252.tar.gz |
* alias.c: PROTO -> PARAMS.
* basic-block.h: Likewise.
* bitmap.c: Likewise.
* bitmap.h: Likewise.
* builtins.c: Likewise.
* c-aux-info.c: Likewise.
* caller-save.c: Likewise.
* calls.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31338 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-aux-info.c')
-rw-r--r-- | gcc/c-aux-info.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/c-aux-info.c b/gcc/c-aux-info.c index 4131abf5e68..e2f65b50b1c 100644 --- a/gcc/c-aux-info.c +++ b/gcc/c-aux-info.c @@ -1,7 +1,7 @@ /* Generate information regarding function declarations and definitions based on information stored in GCC's tree structure. This code implements the -aux-info option. - Copyright (C) 1989, 91, 94, 95, 97-98, 1999 Free Software Foundation, Inc. + Copyright (C) 1989, 91, 94, 95, 97-99, 2000 Free Software Foundation, Inc. Contributed by Ron Guilmette (rfg@segfault.us.com). This file is part of GNU CC. @@ -38,12 +38,12 @@ typedef enum formals_style_enum formals_style; static const char *data_type; -static char *affix_data_type PROTO((const char *)); -static const char *gen_formal_list_for_type PROTO((tree, formals_style)); -static int deserves_ellipsis PROTO((tree)); -static const char *gen_formal_list_for_func_def PROTO((tree, formals_style)); -static const char *gen_type PROTO((const char *, tree, formals_style)); -static const char *gen_decl PROTO((tree, int, formals_style)); +static char *affix_data_type PARAMS ((const char *)); +static const char *gen_formal_list_for_type PARAMS ((tree, formals_style)); +static int deserves_ellipsis PARAMS ((tree)); +static const char *gen_formal_list_for_func_def PARAMS ((tree, formals_style)); +static const char *gen_type PARAMS ((const char *, tree, formals_style)); +static const char *gen_decl PARAMS ((tree, int, formals_style)); /* Given a string representing an entire type or an entire declaration which only lacks the actual "data-type" specifier (at its left end), |