diff options
Diffstat (limited to 'gdb/m2-valprint.c')
-rw-r--r-- | gdb/m2-valprint.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/m2-valprint.c b/gdb/m2-valprint.c index 76b97c5..903d96b 100644 --- a/gdb/m2-valprint.c +++ b/gdb/m2-valprint.c @@ -1,5 +1,5 @@ /* Support for printing Modula 2 values for GDB, the GNU debugger. - Copyright 1986, 1988, 1989, 1991 Free Software Foundation, Inc. + Copyright 1986, 1988, 1989, 1991, 2000 Free Software Foundation, Inc. This file is part of GDB. @@ -34,15 +34,15 @@ m2_val_print (type, valaddr, embedded_offset, address, char *valaddr; int embedded_offset; CORE_ADDR address; - GDB_FILE *stream; + struct ui_file *stream; int format; int deref_ref; int recurse; enum val_prettyprint pretty; { - extern int - c_val_print PARAMS ((struct type *, char *, int, CORE_ADDR, - GDB_FILE *, int, int, int, enum val_prettyprint)); + extern int c_val_print (struct type *, char *, int, CORE_ADDR, + struct ui_file *, int, int, int, + enum val_prettyprint); return (c_val_print (type, valaddr, 0, address, stream, format, deref_ref, recurse, pretty)); } |