diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-17 10:28:42 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-17 10:28:42 +0000 |
commit | 152763c1ff523e4ded98d3e719899701b470be0d (patch) | |
tree | 42274695dd69704a17f03d9afab502575a75b7b4 /gcc/config/ia64/ia64-c.c | |
parent | b40da9a76d189d5197c819d0cb7b801741e5bd8c (diff) | |
download | gcc-152763c1ff523e4ded98d3e719899701b470be0d.tar.gz |
Convert K&R prototypes to ISO C90.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70516 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/ia64/ia64-c.c')
-rw-r--r-- | gcc/config/ia64/ia64-c.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gcc/config/ia64/ia64-c.c b/gcc/config/ia64/ia64-c.c index b95c21d4d9b..422fc865b2a 100644 --- a/gcc/config/ia64/ia64-c.c +++ b/gcc/config/ia64/ia64-c.c @@ -1,5 +1,5 @@ /* Definitions of C specific functions for GNU compiler. - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2003 Free Software Foundation, Inc. Contributed by Steve Ellcey <sje@cup.hp.com> This file is part of GCC. @@ -30,11 +30,10 @@ Boston, MA 02111-1307, USA. */ #include "toplev.h" #include "tm_p.h" -static void ia64_hpux_add_pragma_builtin PARAMS ((tree func)); +static void ia64_hpux_add_pragma_builtin (tree func); void -ia64_hpux_handle_builtin_pragma (pfile) - cpp_reader *pfile ATTRIBUTE_UNUSED; +ia64_hpux_handle_builtin_pragma (cpp_reader *pfile ATTRIBUTE_UNUSED) { /* #pragma builtin name, name, name */ @@ -173,8 +172,7 @@ static const c89_mathlib_names c89_mathlib_name_list [] = }; static void -ia64_hpux_add_pragma_builtin (func) - tree func; +ia64_hpux_add_pragma_builtin (tree func) { size_t i; |