diff options
author | Andreas Jaeger <aj@suse.de> | 2003-06-15 15:43:32 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-06-15 15:43:32 +0200 |
commit | 4682ae0463c9fcc254fe1c8ede9da9133a9956bc (patch) | |
tree | 011c105664290fc65aee6e952c836e52aa84f722 /gcc/tree.h | |
parent | cbdb4ba2dcf013c9ee4b1f28182596ab9ae135c5 (diff) | |
download | gcc-4682ae0463c9fcc254fe1c8ede9da9133a9956bc.zip gcc-4682ae0463c9fcc254fe1c8ede9da9133a9956bc.tar.gz gcc-4682ae0463c9fcc254fe1c8ede9da9133a9956bc.tar.bz2 |
alloc-pool.c: Convert to ISO C90 prototypes.
* alloc-pool.c: Convert to ISO C90 prototypes.
* alloc-pool.h: Likewise.
* alias.c: Likewise.
* attribs.c: Likewise.
* bb-reorder.c: Likewise.
* bitmap.h: Likewise.
* bitmap.c: Likewise.
* builtins.c: Likewise.
* tree.h: Convert prototypes of attribs.c to ISO C90.
* basic-block.h: Convert prototypes of bb-reorder.c to ISO C90.
* rtl.h: Convert prototypes of alias.c and builtins.c to ISO C90.
* expr.h: Convert prototypes of builtins.c to ISO C90.
From-SVN: r67975
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2199,11 +2199,11 @@ extern void default_register_cpp_builtins PARAMS ((struct cpp_reader *)); /* Split a list of declspecs and attributes into two. */ -extern void split_specs_attrs PARAMS ((tree, tree *, tree *)); +extern void split_specs_attrs (tree, tree *, tree *); /* Strip attributes from a list of combined specs and attrs. */ -extern tree strip_attrs PARAMS ((tree)); +extern tree strip_attrs (tree); /* Return 1 if an attribute and its arguments are valid for a decl or type. */ @@ -2892,7 +2892,7 @@ extern bool alloca_call_p PARAMS ((tree)); from tree.h. Depending on these flags, some attributes may be returned to be applied at a later stage (for example, to apply a decl attribute to the declaration rather than to its type). */ -extern tree decl_attributes PARAMS ((tree *, tree, int)); +extern tree decl_attributes (tree *, tree, int); /* In integrate.c */ extern void save_for_inline PARAMS ((tree)); |