diff options
author | Jason Molenda <jsm@bugshack.cygnus.com> | 2000-02-02 00:21:19 +0000 |
---|---|---|
committer | Jason Molenda <jsm@bugshack.cygnus.com> | 2000-02-02 00:21:19 +0000 |
commit | ed3cebbbd8c84047fa914f111398876cc6e845c2 (patch) | |
tree | 57074a05fd2c90fb20318d6b83680988883b9450 /gdb/m2-valprint.c | |
parent | 485c0dcc7c141eca8c828f81ee2af335d32c3a8e (diff) | |
download | gdb-ed3cebbbd8c84047fa914f111398876cc6e845c2.tar.gz |
import gdb-2000-02-01 snapshot
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 76b97c5ca77..903d96b6e80 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)); } |