diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-06 18:59:38 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-06 18:59:38 +0000 |
commit | 5a2784f82e64394ffa17f8cacdb5270482ee8423 (patch) | |
tree | 76c547ec54bb4708e30224c15686141e4954541a /gcc/dbxout.h | |
parent | c4918153fded93bf81a0c33d30cc07ec8709fb9c (diff) | |
download | gcc-5a2784f82e64394ffa17f8cacdb5270482ee8423.tar.gz |
* basic-block.h: Convert prototypes to ISO C90.
* c-parse.in: Likewise.
* c-pragma.h: Likewise.
* c-typeck.c: Likewise.
* cfghooks.h: Likewise.
* cfgloopanal.c: Likewise.
* dbxout.h: Likewise.
* debug.h: Likewise.
* dwarf2asm.h: Likewise.
* gcov.c: Likewise.
* gengtype-lex.l: Likewise.
* sched-int.h: Likewise.
* timevar.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69010 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dbxout.h')
-rw-r--r-- | gcc/dbxout.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gcc/dbxout.h b/gcc/dbxout.h index 101eae9d07c..bf0e741fe45 100644 --- a/gcc/dbxout.h +++ b/gcc/dbxout.h @@ -1,5 +1,6 @@ /* dbxout.h - Various declarations for functions found in dbxout.c - Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2003 + Free Software Foundation, Inc. This file is part of GCC. @@ -18,7 +19,7 @@ along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -extern int dbxout_symbol PARAMS ((tree, int)); -extern void dbxout_parms PARAMS ((tree)); -extern void dbxout_reg_parms PARAMS ((tree)); -extern int dbxout_syms PARAMS ((tree)); +extern int dbxout_symbol (tree, int); +extern void dbxout_parms (tree); +extern void dbxout_reg_parms (tree); +extern int dbxout_syms (tree); |