diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-29 15:19:13 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-29 15:19:13 +0000 |
commit | 8ec3a57be60a7500b15d2fa3ad8d530f15019064 (patch) | |
tree | 69a7605e420c2a4c3192a22cb99dabe1df635fc9 /gcc/dwarf2out.h | |
parent | 2358393e3a0db63122498ce79a712bc28fa95f9e (diff) | |
download | gcc-8ec3a57be60a7500b15d2fa3ad8d530f15019064.tar.gz |
* cse.c: Convert prototypes to ISO C90.
* cselib.c: Likewise.
* cselib.h: Likewise.
* dbxout.c: Likewise.
* debug.c: Likewise.
* df.c: Likewise.
* df.h: Likewise.
* dojump.c: Likewise.
* doloop.c: Likewise.
* dominance.c: Likewise.
* dwarf2asm.c: Likewise.
* dwarf2out.c: Likewise.
* dwarf2out.h: Likewise.
* dwarfout.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68673 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarf2out.h')
-rw-r--r-- | gcc/dwarf2out.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gcc/dwarf2out.h b/gcc/dwarf2out.h index 63cedeadddc..e6bf532ff08 100644 --- a/gcc/dwarf2out.h +++ b/gcc/dwarf2out.h @@ -1,5 +1,6 @@ /* dwarf2out.h - Various declarations for functions found in dwarf2out.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,11 +19,11 @@ 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 void dwarf2out_decl PARAMS ((tree)); -extern void dwarf2out_frame_debug PARAMS ((rtx)); +extern void dwarf2out_decl (tree); +extern void dwarf2out_frame_debug (rtx); -extern void debug_dwarf PARAMS ((void)); +extern void debug_dwarf (void); struct die_struct; -extern void debug_dwarf_die PARAMS ((struct die_struct *)); -extern void dwarf2out_set_demangle_name_func PARAMS ((const char *(*) (const char *))); -extern void dwarf2out_add_library_unit_info PARAMS ((const char *, const char *)); +extern void debug_dwarf_die (struct die_struct *); +extern void dwarf2out_set_demangle_name_func (const char *(*) (const char *)); +extern void dwarf2out_add_library_unit_info (const char *, const char *); |